Alex Lin 62948308b6 Adding back a lost capability, but better this time. The user can now
specify a python module name where the class and functions will be
visible in python.  With care the user can mimic the C++ namespaces their
models reside in, but it isn't perfect nor automatic.  It's still pretty
neat.
2019-03-13 16:17:08 -05:00

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 ;