doxygen option '\file' added.
This commit is contained in:
+11
-9
@@ -25,21 +25,23 @@
|
||||
#include <map>
|
||||
#include <vector>
|
||||
|
||||
/** \file appl.h */
|
||||
|
||||
/** the available data types. */
|
||||
enum DataType {
|
||||
dt_none, // default for __text_only__
|
||||
dt_bool, // boolean
|
||||
dt_int, // integer
|
||||
dt_long, // long
|
||||
dt_float, // float
|
||||
dt_string // string
|
||||
dt_none, /*!< default for __text_only__ */
|
||||
dt_bool, /*!< boolean */
|
||||
dt_int, /*!< integer */
|
||||
dt_long, /*!< long */
|
||||
dt_float, /*!< float */
|
||||
dt_string /*!< string */
|
||||
};
|
||||
|
||||
/** option types. */
|
||||
enum OptionType {
|
||||
ot_none, // no option type is needed
|
||||
ot_optional, // a value is optional
|
||||
ot_mandatory // a value is mandatory
|
||||
ot_none, /*!< no option type is needed */
|
||||
ot_optional, /*!< a value is optional */
|
||||
ot_mandatory /*!< a value is mandatory */
|
||||
};
|
||||
|
||||
/** structure for defining application options */
|
||||
|
||||
+13
-11
@@ -28,23 +28,25 @@
|
||||
#include <vector>
|
||||
#include <cstdarg>
|
||||
|
||||
/** \file logger.h */
|
||||
|
||||
/** available types for all subsystems */
|
||||
enum AreasType {
|
||||
bas=1, // basis
|
||||
net=2, // network
|
||||
bus=4, // ebus
|
||||
cyc=8, // cycle
|
||||
all=15, // type for all subsystems
|
||||
Size_of_Areas=4 // number of possible areas
|
||||
bas=1, /*!< basis */
|
||||
net=2, /*!< network */
|
||||
bus=4, /*!< ebus */
|
||||
cyc=8, /*!< cycle */
|
||||
all=15, /*!< type for all subsystems */
|
||||
Size_of_Areas=4 /*!< number of possible areas */
|
||||
};
|
||||
|
||||
/** available logging levels */
|
||||
enum LevelType {
|
||||
error=0, // silent run, only errors will be printed
|
||||
event, // only interesting message for normal use
|
||||
trace, // most of the information for normal use
|
||||
debug, // print internal states too
|
||||
Size_of_Level // number of possible levels
|
||||
error=0, /*!< silent run, only errors will be printed */
|
||||
event, /*!< only interesting message for normal use */
|
||||
trace, /*!< most of the information for normal use */
|
||||
debug, /*!< print internal states too */
|
||||
Size_of_Level /*!< number of possible levels */
|
||||
};
|
||||
|
||||
/** global function to get calculate logging areas */
|
||||
|
||||
Reference in New Issue
Block a user