mirror of
https://github.com/nasa/trick.git
synced 2024-12-20 21:53:10 +00:00
7779dc568b
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.
42 lines
869 B
C
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
|