mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-04-29 04:03:52 +00:00
* Add copyright check * Remove old license message * Implement suggestions from code review
37 lines
666 B
C++
37 lines
666 B
C++
// Copyright (c) 2017-2020, University of Cincinnati, developed by Henry Schreiner
|
|
// under NSF AWARD 1414736 and by the respective contributors.
|
|
// All rights reserved.
|
|
//
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
#pragma once
|
|
|
|
// CLI Library includes
|
|
// Order is important for combiner script
|
|
|
|
#include "CLI/Version.hpp"
|
|
|
|
#include "CLI/Macros.hpp"
|
|
|
|
#include "CLI/StringTools.hpp"
|
|
|
|
#include "CLI/Error.hpp"
|
|
|
|
#include "CLI/TypeTools.hpp"
|
|
|
|
#include "CLI/Split.hpp"
|
|
|
|
#include "CLI/ConfigFwd.hpp"
|
|
|
|
#include "CLI/Validators.hpp"
|
|
|
|
#include "CLI/FormatterFwd.hpp"
|
|
|
|
#include "CLI/Option.hpp"
|
|
|
|
#include "CLI/App.hpp"
|
|
|
|
#include "CLI/Config.hpp"
|
|
|
|
#include "CLI/Formatter.hpp"
|