trick/include/trick/checkpoint_stl.hh
Alex Lin de012dde71 Feature request: Support checkpointing and logging of std::array #480
Added std::array as an STL type Trick recognizes.  We can now create io code
that can save and restore std::arrays like std::vectors and other similar
types. Like other STL types, an std::array cannot be logged or viewed in
trick-tv.
2017-09-27 16:01:52 -05:00

25 lines
409 B
C++

/*
PURPOSE: (Helpers to checkpoint STLs)
*/
#ifndef CHECKPOINT_STL_HH
#define CHECKPOINT_STL_HH
// array, vector, list, deque, set, multiset
#include "trick/checkpoint_sequence_stl.hh"
// map, multimap
#include "trick/checkpoint_map.hh"
// stack
#include "trick/checkpoint_stack.hh"
// queue , priority_queue
#include "trick/checkpoint_queue.hh"
// pair
#include "trick/checkpoint_pair.hh"
#endif