trick/test/SIM_test_templates/S_define

30 lines
572 B
Plaintext
Raw Normal View History

2015-02-26 15:02:31 +00:00
#include "sim_objects/default_trick_sys.sm"
##include "TemplateTest.hh"
2015-02-26 15:02:31 +00:00
class templateSimObject : public Trick::SimObject {
public:
TemplateTest tobj ;
templateSimObject() {
(1.0, "scheduled") trick_ret = print() ;
}
int print() { std::cout << "In print()" << 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) ;
}