0.6.0
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 48 of file cli_handler.h.

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