CLI11 2.4.1
Loading...
Searching...
No Matches
Argv.hpp
Go to the documentation of this file.
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// [CLI11:public_includes:set]
10#include <string>
11#include <vector>
12// [CLI11:public_includes:end]
13
14#include <CLI/Macros.hpp>
15
16namespace CLI {
17// [CLI11:argv_hpp:verbatim]
18namespace detail {
19#ifdef _WIN32
21CLI11_INLINE std::vector<std::string> compute_win32_argv();
22#endif
23} // namespace detail
24// [CLI11:argv_hpp:end]
25} // namespace CLI
26
27#ifndef CLI11_COMPILE
28#include "impl/Argv_inl.hpp"
29#endif
#define CLI11_INLINE
Definition Macros.hpp:129
auto checked_to_string(T &&value) -> decltype(to_string(std::forward< T >(value)))
special template overload
Definition TypeTools.hpp:349
Definition App.hpp:34