mirror of
https://github.com/nasa/trick.git
synced 2024-12-20 05:37:55 +00:00
15 lines
301 B
C
15 lines
301 B
C
|
/*************************************************************************
|
||
|
PURPOSE: (Starter class)
|
||
|
LIBRARY DEPENDENCY:
|
||
|
(
|
||
|
(starter.cpp)
|
||
|
)
|
||
|
**************************************************************************/
|
||
|
|
||
|
class Starter {
|
||
|
public:
|
||
|
Starter() = delete;
|
||
|
Starter(int foo);
|
||
|
|
||
|
};
|