CLI11
C++11 Command Line Interface Parser
CLI.hpp
1 #pragma once
2 
3 // Distributed under the 3-Clause BSD License. See accompanying
4 // file LICENSE or https://github.com/CLIUtils/CLI11 for details.
5 
6 // CLI Library includes
7 // Order is important for combiner script
8 
9 #include "CLI/Version.hpp"
10 
11 #include "CLI/Macros.hpp"
12 
13 #include "CLI/Optional.hpp"
14 
15 #include "CLI/StringTools.hpp"
16 
17 #include "CLI/Error.hpp"
18 
19 #include "CLI/TypeTools.hpp"
20 
21 #include "CLI/Split.hpp"
22 
23 #include "CLI/ConfigFwd.hpp"
24 
25 #include "CLI/Validators.hpp"
26 
27 #include "CLI/FormatterFwd.hpp"
28 
29 #include "CLI/Option.hpp"
30 
31 #include "CLI/App.hpp"
32 
33 #include "CLI/Config.hpp"
34 
35 #include "CLI/Formatter.hpp"