trick/trick_source/sim_services/Executive/include/sim_mode.h
Alex Lin 14a75508a3 Cleaning up once include variables and copyright cleanup.
Changed all header file once include variables to follow the same naming
convention and not start with any underscores.  Also deleted old
incorrect copyright notices.  Also removed $Id: tags from all files.

Fixes #14.  Fixes #22.
2015-03-23 16:03:14 -05:00

42 lines
894 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) (--) (--)))
*/
/**
* @class SIM_COMMAND sim_mode.h
* 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;
/**
* @class SIM_MODE sim_mode.h
* 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