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/String.h | |
parent | 6be21a3b278d3bb3f8ac4176f923d42dfb9b1e12 (diff) |
gcc-3.1
Diffstat (limited to 'include/String.h')
-rw-r--r-- | include/String.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/String.h b/include/String.h index a0d9220..f8db2c7 100644 --- a/include/String.h +++ b/include/String.h @@ -2,7 +2,7 @@ #define __STRING_H__ #ifdef __cplusplus -#include <iostream.h> +#include <iostream> #include <string.h> #include <Exceptions.h> @@ -56,8 +56,8 @@ class String : public Base { size_t siz; }; -ostream & operator<<(ostream &, const String &); -istream & operator>>(istream &, String &); +std::ostream & operator<<(std::ostream &, const String &); +std::istream & operator>>(std::istream &, String &); #else #error This only works with a C++ compiler |