CLI11
C++11 Command Line Interface Parser
Loading...
Searching...
No Matches
Argv.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 <string>
13#include <vector>
14// [CLI11:public_includes:end]
15
16#include "Macros.hpp"
17
18namespace CLI {
19// [CLI11:argv_hpp:verbatim]
20namespace detail {
21#ifdef _WIN32
23CLI11_INLINE std::vector<std::string> compute_win32_argv();
24#endif
25} // namespace detail
26// [CLI11:argv_hpp:end]
27} // namespace CLI
28
29#ifndef CLI11_COMPILE
30#include "impl/Argv_inl.hpp" // IWYU pragma: export
31#endif