CLI11
C++11 Command Line Interface Parser
Loading...
Searching...
No Matches
Formatter.hpp
1// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner
2// under NSF AWARD 1414736 and by the respective contributors.
3// All rights reserved.
4//
5// SPDX-License-Identifier: BSD-3-Clause
6
7#pragma once
8
9// IWYU pragma: private, include "CLI/CLI.hpp"
10
11// [CLI11:public_includes:set]
12#include <algorithm>
13#include <string>
14#include <vector>
15// [CLI11:public_includes:end]
16
17#include "App.hpp"
18#include "FormatterFwd.hpp"
19
20namespace CLI {
21// [CLI11:formatter_hpp:verbatim]
22// [CLI11:formatter_hpp:end]
23} // namespace CLI
24
25#ifndef CLI11_COMPILE
26#include "impl/Formatter_inl.hpp" // IWYU pragma: export
27#endif