trick/trick_source/sim_services/CheckPointRestart/include/checkpoint_stl.hh
Alex Lin 14a75508a3 Cleaning up once include variables and copyright cleanup.
Changed all header file once include variables to follow the same naming
convention and not start with any underscores.  Also deleted old
incorrect copyright notices.  Also removed $Id: tags from all files.

Fixes #14.  Fixes #22.
2015-03-23 16:03:14 -05:00

25 lines
373 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