0.5.4
C++ to UML diagram generator based on Clang
Loading...
Searching...
No Matches
Classes | Enumerations
clanguml::cli Namespace Reference

Classes

class  cli_handler
 Command line options handler. More...
 
struct  runtime_config
 This class holds command line parameters not directly related to specific diagram configurations. More...
 

Enumerations

enum class  cli_flow_t { kExit , kError , kContinue }
 

Enumeration Type Documentation

◆ cli_flow_t

enum class clanguml::cli::cli_flow_t
strong

This enum represents possible exit states of the command line parser.

Enumerator
kExit 

The application should exit (e.g. -h)

kError 

The options or configuration file were invalid

kContinue 

Continue with processing diagrams

Definition at line 47 of file cli_handler.h.

47 {
48 kExit, /*!< The application should exit (e.g. `-h`) */
49 kError, /*!< The options or configuration file were invalid */
50 kContinue /*!< Continue with processing diagrams */
51};