#include "sim_objects/default_trick_sys.sm" ##include "trick/SimObject.hh" ##include "TemplateTest.hh" ##include "Potato.hh" ##include "Onion.hh" ##include "Foo.hh" ##include "FooA.hh" class templateSimObject : public Trick::SimObject { public: TemplateTest tobj ; potato::Potato potato; FooA FooA_enum; templateSimObject() { (1.0, "scheduled") trick_ret = printMe() ; } int printMe() { std::cout << "In printMe()" << std::endl ; return 0 ; } ; } ; // Instantiations templateSimObject tso ; // Connect objects void create_connections() { // Set the default termination time trick_sys.sched.set_terminate_time(1.0) ; trick_sys.sched.set_freeze_frame(0.10) ; }