mirror of
https://github.com/nasa/trick.git
synced 2025-01-25 05:46:58 +00:00
22 lines
422 B
C++
22 lines
422 B
C++
|
/*
|
||
|
PURPOSE:
|
||
|
( Job Class Identifiers )
|
||
|
PROGRAMMERS:
|
||
|
(((Alex Lin) (NASA) (2009)))
|
||
|
(((John Penn)(L3) (2010)))
|
||
|
*/
|
||
|
|
||
|
#ifndef JOB_CLASS_ID
|
||
|
#define JOB_CLASS_ID
|
||
|
|
||
|
namespace Trick {
|
||
|
enum {
|
||
|
DerivativeJobClassId = 2000,
|
||
|
IntegrationJobClassId = 2001,
|
||
|
DynamicEventJobClassId = 2002,
|
||
|
PostIntegrationJobClassId = 2003,
|
||
|
PreIntegrationJobClassId = 2004
|
||
|
};
|
||
|
}
|
||
|
#endif
|