mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
25 lines
585 B
Plaintext
25 lines
585 B
Plaintext
|
/************************TRICK HEADER*************************
|
||
|
PURPOSE:
|
||
|
(blah blah blah)
|
||
|
LIBRARY DEPENDENCIES:
|
||
|
(
|
||
|
)
|
||
|
*************************************************************/
|
||
|
|
||
|
#include "sim_objects/default_trick_sys.sm"
|
||
|
|
||
|
##include "sim_services/Integrator/include/integrator_c_intf.h"
|
||
|
|
||
|
class ballSimObject : public Trick::SimObject {
|
||
|
|
||
|
public:
|
||
|
|
||
|
/** Constructor to add the jobs */
|
||
|
ballSimObject() {
|
||
|
("integration") trick_ret = integrate() ;
|
||
|
}
|
||
|
} ;
|
||
|
|
||
|
// No instantiations made in this S_define file. They are made in the input file.
|
||
|
|