trick/include/trick/sim_mode.h
David Hammen 7779dc568b Compile clean with clang++ -Wdocumentation.
I made a number of changes to Trick to make it compile clean with
clang++ -Wdocumentation, which checks doxygen comments. The changes
were either to comments or to parameter names in function declarations.
None of the changes have any impact on the compiled code.
2018-03-28 09:44:23 -05:00

42 lines
869 B
C

/*
PURPOSE:
(For master/slave sim, this is slave info)
PROGRAMMERS:
(((Eddie J. Paddock) (LinCom) (April 1996) (--) (Initial Version))
((Scott Killingsworth) (LinCom) (September 1997) (--) (--)))
*/
/**
* @enum SIM_COMMAND
* The SIM_COMMAND enumeration represents the TRICK simulation commmands.
*/
#ifndef SIMMODE_HH
#define SIMMODE_HH
typedef enum {
NoCmd = 0 , /* NoCmd */
FreezeCmd = 2 , /* freeze */
RunCmd = 3 , /* run */
ExitCmd = 10 , /* exit */
} SIM_COMMAND;
/**
* @enum SIM_MODE
* The SIM_MODE enumeration represents the TRICK simulation modes.
*/
typedef enum {
Initialization = 0 , /* Initialization */
Freeze = 1 , /* freeze */
Step = 4 , /* Debug Stepping */
Run = 5 , /* run */
ExitMode = 6 /* exit */
} SIM_MODE ;
#endif