diff options
author | Pixel <Pixel> | 2002-07-22 13:07:58 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2002-07-22 13:07:58 +0000 |
commit | 8f8105e69223b8380054275b0a04963eba79759e (patch) | |
tree | dc27aa1463e207c34dfd05ff849ce62c6ae7408d /includes/String.h | |
parent | 4a54a9ddca7821eb479fd3eff2fd08a2a0b979e2 (diff) |
Baltisot update
Diffstat (limited to 'includes/String.h')
-rw-r--r-- | includes/String.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/includes/String.h b/includes/String.h index b53936f..f8db2c7 100644 --- a/includes/String.h +++ b/includes/String.h @@ -2,7 +2,7 @@ #define __STRING_H__ #ifdef __cplusplus -#include <iostream.h> +#include <iostream> #include <string.h> #include <Exceptions.h> @@ -13,10 +13,8 @@ class String : public Base { String(char); String(int); String(unsigned int); -#ifdef USE_LONGLONG String(long long); String(unsigned long long); -#endif String(double); ~String(); const char * set(const char *, ...); @@ -58,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 |