mmCEsim 0.3.0
mmWave Channel Estimation Simulation
cli_options.h
Go to the documentation of this file.
1
12#ifndef _CLI_OPTIONS_H_
13#define _CLI_OPTIONS_H_
14
15#include <string>
16
23 std::string cmd;
24 std::string input;
25 std::string output = "__UNDEFINED";
26 std::string style;
27 std::string lang;
28 std::string value;
29 bool force = false;
30 bool verbose = false;
31 bool no_error_compile = false;
32};
33
34#endif
Command line options.
Definition: cli_options.h:22
std::string value
Definition: cli_options.h:28
std::string input
Definition: cli_options.h:24
std::string style
Definition: cli_options.h:26
std::string lang
Definition: cli_options.h:27
std::string output
Definition: cli_options.h:25
bool verbose
Definition: cli_options.h:30
bool force
Definition: cli_options.h:29
std::string cmd
Definition: cli_options.h:23
bool no_error_compile
Definition: cli_options.h:31