mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 13:17:55 +00:00
35 lines
845 B
Plaintext
35 lines
845 B
Plaintext
/************************TRICK HEADER*************************
|
|
PURPOSE:
|
|
(This S_define is used with the RUN_dt input file)
|
|
LIBRARY_DEPENDENCY:
|
|
(
|
|
(cannon/gravity/src/cannon_dt.c)
|
|
(cannon/gravity/src/cannon_init.c)
|
|
(cannon/gravity/src/cannon_default_data.c)
|
|
)
|
|
*************************************************************/
|
|
|
|
#include "sim_objects/default_trick_sys.sm"
|
|
|
|
|
|
##include "cannon/gravity/include/cannon.h"
|
|
##include "cannon/gravity/include/cannon_dt_proto.h"
|
|
|
|
class CannonSimObject : public Trick::SimObject {
|
|
|
|
public:
|
|
CANNON cannon ;
|
|
|
|
CannonSimObject() {
|
|
("default_data") cannon_default_data( &cannon ) ;
|
|
|
|
("initialization") cannon_init( &cannon ) ;
|
|
|
|
(0.01, "scheduled") cannon_dt( &cannon ) ;
|
|
}
|
|
|
|
} ;
|
|
|
|
// Instantiations
|
|
CannonSimObject dyn ;
|