mirror of
https://github.com/nasa/trick.git
synced 2024-12-22 14:32:24 +00:00
14a75508a3
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.
25 lines
373 B
C++
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
|