mirror of
https://github.com/nasa/trick.git
synced 2024-12-24 07:16:41 +00:00
de012dde71
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.
25 lines
409 B
C++
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
|