From 8f8105e69223b8380054275b0a04963eba79759e Mon Sep 17 00:00:00 2001 From: Pixel Date: Mon, 22 Jul 2002 13:07:58 +0000 Subject: Baltisot update --- includes/String.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'includes/String.h') 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 +#include #include #include @@ -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 -- cgit v1.2.3