mirror of
https://github.com/nasa/trick.git
synced 2024-12-22 06:27:49 +00:00
21 lines
410 B
C
21 lines
410 B
C
|
/*************************************************************************
|
||
|
PURPOSE: (Starter class)
|
||
|
LIBRARY DEPENDENCY:
|
||
|
(
|
||
|
(starter.cpp)
|
||
|
)
|
||
|
**************************************************************************/
|
||
|
|
||
|
#include "dynamic_obj.h"
|
||
|
|
||
|
class Starter {
|
||
|
public:
|
||
|
Starter();
|
||
|
int default_data();
|
||
|
int init();
|
||
|
int scheduled();
|
||
|
int deriv();
|
||
|
int integ();
|
||
|
int shutdown();
|
||
|
|
||
|
};
|