mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 05:07:54 +00:00
46aec08b80
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
19 lines
340 B
Plaintext
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 ;
|
|
|