mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 21:27:54 +00:00
34 lines
679 B
C++
34 lines
679 B
C++
/*************************************************************************
|
|
PURPOSE: (Starter class)
|
|
LIBRARY DEPENDENCY:
|
|
(
|
|
(starter.cpp)
|
|
)
|
|
**************************************************************************/
|
|
|
|
#include <string>
|
|
|
|
class Starter {
|
|
public:
|
|
Starter() {}
|
|
|
|
void sched();
|
|
void custom();
|
|
void top();
|
|
void end();
|
|
void automatic();
|
|
void automatic_last();
|
|
void deriv();
|
|
int integ();
|
|
void test_calls();
|
|
|
|
int sched_calls = 0;
|
|
int custom_calls = 0;
|
|
int top_calls = 0;
|
|
int automatic_calls = 0;
|
|
int automatic_last_calls = 0;
|
|
int deriv_calls = 0;
|
|
int integ_calls = 0;
|
|
int end_calls = 0;
|
|
};
|