$darkmode
fable_fwd.hpp
Go to the documentation of this file.
1 /*
2  * Copyright 2023 Robert Bosch GmbH
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  * SPDX-License-Identifier: Apache-2.0
17  */
22 #if __cplusplus < 201703L
23 #error "the fable library requires a minimum standard of C++17"
24 #include <force_compiler_to_stop_here>
25 #endif
26 
27 #include <string>
28 
29 #include <nlohmann/detail/value_t.hpp>
30 #include <nlohmann/json_fwd.hpp>
31 
32 namespace fable {
33 
34 // from json.hpp
35 using Json = nlohmann::json;
36 using JsonPointer = nlohmann::json_pointer<std::string>;
37 using JsonType = nlohmann::detail::value_t;
38 
39 // from conf.hpp
40 class Conf;
41 
42 // from error.hpp
43 class Error;
44 class ConfError;
45 class SchemaError;
46 
47 // from schema.hpp
48 class Schema;
49 
50 // from confable.hpp
51 class Confable;
52 
53 // from environment.hpp
54 class Environment;
55 
56 } // namespace fable
Definition: error.hpp:60
Definition: conf.hpp:76
Definition: confable.hpp:43
Definition: environment.hpp:34
Definition: error.hpp:40
Definition: error.hpp:130
Definition: schema.hpp:175
nlohmann::json Json
Definition: fable_fwd.hpp:35
nlohmann::detail::value_t JsonType
Definition: fable_fwd.hpp:37
nlohmann::json_pointer< std::string > JsonPointer
Definition: fable_fwd.hpp:36