diff options
author | Pixel <Pixel> | 2002-06-04 13:42:36 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2002-06-04 13:42:36 +0000 |
commit | 6cc9c2c329b00c51f399e5b040a4d4a1d1213ecd (patch) | |
tree | 43cdef5700f65c9f90165590ef582988bb02ed98 /include/Variables.h | |
parent | 6be21a3b278d3bb3f8ac4176f923d42dfb9b1e12 (diff) |
gcc-3.1
Diffstat (limited to 'include/Variables.h')
-rw-r--r-- | include/Variables.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Variables.h b/include/Variables.h index 8d7189b..c82ad87 100644 --- a/include/Variables.h +++ b/include/Variables.h @@ -2,7 +2,7 @@ #define __VARIABLES_H__ #ifdef __cplusplus -#include <vector.h> +#include <vector> #include <String.h> #include <Handle.h> #include <Exceptions.h> @@ -22,7 +22,7 @@ class Variables : public Base { void Del(const String &); private: - vector<String> Vars; + std::vector<String> Vars; int nbvars; }; |