trick/test/SIM_stls/S_define
Alex Lin 46aec08b80 Add direct STL checkpointing
Initial checkin of STL checkpointing.  This checkin only covers the sequential
STLs, vector, list, deque, set, and multiset.  This checkin does include the
changes in Trick header files to include/exclude our STLs properly to make a
restartable checkpoint.

refs #206
2016-03-29 09:26:49 -05:00

19 lines
340 B
Plaintext

#include "sim_objects/default_trick_sys.sm"
##include "STLCheckpoint.hh"
class theSimObject : public Trick::SimObject {
public:
STLCheckpoint stlc ;
/** Constructor to add the jobs */
theSimObject() : stlc("Petunia") {
(1.0, "scheduled") stlc.speak() ;
}
} ;
theSimObject the_object ;