arg_router
1.4.0
C++ command line argument parsing and routing
|
Typedefs | |
template<typename T > | |
using | allocator = std::allocator< T > |
Variables | |
constexpr auto | long_prefix = std::string_view{ "--" } |
constexpr auto | short_prefix = std::string_view{ "-" } |
Build configuration-defined constants.
There are a few core parts of arg_router that are configurable as compile defines, all are available as CMake cache variables too (minus the "AR_" prefix).
using arg_router::config::allocator = typedef std::allocator <T> |
Allocator for all STL types.
T | Type to allocate for |
Definition at line 70 of file config.hpp.
|
constexpr |
Long form argument prefix.
UTF-8 supporting. Must be the same or longer than short_prefix (in terms of characters).
Definition at line 52 of file config.hpp.
|
constexpr |
Short form argument prefix.
UTF-8 supporting. Must be one characters long.
Definition at line 58 of file config.hpp.