trick/test/SIM_stls/S_define

24 lines
428 B
Plaintext
Raw Normal View History

2015-02-26 15:02:31 +00:00
#include "sim_objects/default_trick_sys.sm"
##include "STLCheckpoint.hh"
2015-02-26 15:02:31 +00:00
class theSimObject : public Trick::SimObject {
public:
STLCheckpoint stlc ;
/** Constructor to add the jobs */
theSimObject() : stlc() {
("initialization") stlc.addData();
(1.0, "scheduled") stlc.test () ;
(1.0, "scheduled") stlc.print () ;
2015-02-26 15:02:31 +00:00
}
2015-02-26 15:02:31 +00:00
} ;
theSimObject the_object ;