mirror of
https://github.com/nasa/trick.git
synced 2024-12-22 22:42:26 +00:00
25 lines
382 B
C++
25 lines
382 B
C++
|
|
||
|
/*
|
||
|
PURPOSE: (Helpers to checkpoint STLs)
|
||
|
*/
|
||
|
|
||
|
#ifndef __CHECKPOINT_STL_HH__
|
||
|
#define __CHECKPOINT_STL_HH__
|
||
|
|
||
|
// vector, list, deque, set , multiset
|
||
|
#include "checkpoint_sequence_stl.hh"
|
||
|
|
||
|
// map, multimap
|
||
|
#include "checkpoint_map.hh"
|
||
|
|
||
|
// stack
|
||
|
#include "checkpoint_stack.hh"
|
||
|
|
||
|
// queue , priority_queue
|
||
|
#include "checkpoint_queue.hh"
|
||
|
|
||
|
// pair
|
||
|
#include "checkpoint_pair.hh"
|
||
|
|
||
|
#endif
|