mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
31 lines
709 B
Plaintext
31 lines
709 B
Plaintext
/************************TRICK HEADER*************************
|
|
PURPOSE:
|
|
(Test different combinations of Python modules and C++ namespaces)
|
|
*************************************************************/
|
|
|
|
#include "sim_objects/default_trick_sys.sm"
|
|
|
|
##include "FooFood.hh"
|
|
##include "FooInnerFood.hh"
|
|
##include "BarFood.hh"
|
|
##include "FooYummyFood.hh"
|
|
##include "TrickFood.hh"
|
|
|
|
class SimObj : public Trick::SimObject {
|
|
|
|
public:
|
|
Foo::Food foo_food ;
|
|
Foo::Inner::Food foo_inner_food ;
|
|
Bar::Food bar_food ;
|
|
Foo::YummyFood foo_yummyfood ;
|
|
Food trick_food;
|
|
|
|
/** Constructor to add the jobs */
|
|
SimObj() {
|
|
}
|
|
} ;
|
|
|
|
// Instantiations
|
|
SimObj ball ;
|
|
|