mirror of
https://github.com/nasa/trick.git
synced 2025-01-09 14:32:53 +00:00
14a75508a3
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.
22 lines
434 B
C++
22 lines
434 B
C++
/*
|
|
PURPOSE:
|
|
( Job Class Identifiers )
|
|
PROGRAMMERS:
|
|
(((Alex Lin) (NASA) (2009)))
|
|
(((John Penn)(L3) (2010)))
|
|
*/
|
|
|
|
#ifndef INTEGJOBCLASSID_HH
|
|
#define INTEGJOBCLASSID_HH
|
|
|
|
namespace Trick {
|
|
enum {
|
|
DerivativeJobClassId = 2000,
|
|
IntegrationJobClassId = 2001,
|
|
DynamicEventJobClassId = 2002,
|
|
PostIntegrationJobClassId = 2003,
|
|
PreIntegrationJobClassId = 2004
|
|
};
|
|
}
|
|
#endif
|