blob: d5c467d464cd72d500a711b7239f2009f3d22cfe [file] [log] [blame]
Julio Merino28774852016-09-14 16:59:46 +00001// Copyright 2016 The Bazel Authors. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14#ifndef BAZEL_SRC_MAIN_CPP_BLAZE_H_
15#define BAZEL_SRC_MAIN_CPP_BLAZE_H_
16
17#include "src/main/cpp/option_processor.h"
Julio Merinoe3e3bfa2016-12-08 22:22:12 +000018#include "src/main/cpp/workspace_layout.h"
Chloe Calvarin78f1c852016-11-22 21:58:50 +000019#include "src/main/cpp/util/logging.h"
Julio Merino28774852016-09-14 16:59:46 +000020
21namespace blaze {
22
Julio Merinoe3e3bfa2016-12-08 22:22:12 +000023int Main(int argc, const char* argv[], WorkspaceLayout* workspace_layout,
ccalvarin9eea0f92018-03-21 15:32:30 -070024 OptionProcessor* option_processor);
Julio Merino28774852016-09-14 16:59:46 +000025
26} // namespace blaze
27
28#endif // BAZEL_SRC_MAIN_CPP_BLAZE_H_