From 70dfc183be3fff193d86eefef8c68b3ea1ad5438 Mon Sep 17 00:00:00 2001 From: jthorn Date: Thu, 16 Jan 2003 17:07:08 +0000 Subject: * change to not use STL vector class any more (it caused portability problems on platinum) ==> move stl_vector.hh from src/include/ to archive/ directory * convert patch_system_type and initial_guess_method parameters to be array parameters, i.e. they're now set individually for each AH we want to find git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@920 f88db872-0e4f-0410-b76b-b9085cfa78c5 --- archive/stl_vector.hh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 archive/stl_vector.hh (limited to 'archive') diff --git a/archive/stl_vector.hh b/archive/stl_vector.hh new file mode 100644 index 0000000..9e4d817 --- /dev/null +++ b/archive/stl_vector.hh @@ -0,0 +1,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 + using std::vector; +#elif defined(HAVE_VECTOR_H) + #include +#else + #error "Cactus couldn't find the STL vector class!" +#endif -- cgit v1.2.3