mirror of
https://github.com/nasa/trick.git
synced 2024-12-21 14:07:51 +00:00
27 lines
542 B
Plaintext
27 lines
542 B
Plaintext
|
/************************TRICK HEADER*************************
|
||
|
PURPOSE:
|
||
|
(blah blah blah)
|
||
|
*************************************************************/
|
||
|
|
||
|
#include "sim_objects/default_trick_sys.sm"
|
||
|
|
||
|
##include "FooFood.hh"
|
||
|
##include "FooInnerFood.hh"
|
||
|
##include "BarFood.hh"
|
||
|
|
||
|
class SimObj : public Trick::SimObject {
|
||
|
|
||
|
public:
|
||
|
Foo::Food foo_food ;
|
||
|
Foo::Inner::Food foo_inner_food ;
|
||
|
Bar::Food bar_food ;
|
||
|
|
||
|
/** Constructor to add the jobs */
|
||
|
SimObj() {
|
||
|
}
|
||
|
} ;
|
||
|
|
||
|
// Instantiations
|
||
|
SimObj ball ;
|
||
|
|