aboutsummaryrefslogtreecommitdiff
path: root/archive/stl_vector.hh
blob: 9e4d8174f27b521c057c30f34349672b100840b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// stl_vector.hh -- define STL vector class in global namespace.
// $Header$

//
// prerequisites:
//	"cctk.h"
//

//
// This header file defines the STL vector class in the global namespace.
// It makes use of Cactus's configuration-time probing of what header
// files are available.
//

#if   defined(HAVE_VECTOR)
  #include <vector>
  using std::vector;
#elif defined(HAVE_VECTOR_H)
  #include <vector.h>
#else
  #error "Cactus couldn't find the STL vector class!"
#endif