diff options
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 |