diff options
author | Pixel <Pixel> | 2002-08-17 01:48:34 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2002-08-17 01:48:34 +0000 |
commit | 11bf45f50739afb923829b3cc32efb9c8c009613 (patch) | |
tree | 1a9a691cdd3a466d55259aa31fff1bfc0fcd8e7a /includes/String.h | |
parent | 08ecf5aae1c7276bb1e78a288cba3a731604758e (diff) |
Working with Baltisot now....
Diffstat (limited to 'includes/String.h')
-rw-r--r-- | includes/String.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/includes/String.h b/includes/String.h index 1fd6183..7b5fdc4 100644 --- a/includes/String.h +++ b/includes/String.h @@ -9,7 +9,7 @@ class String : public Base { public: String(const String &); - String(const char * = ""); + String(const char * = "", ...); String(char); String(int); String(unsigned int); @@ -61,6 +61,8 @@ class String : public Base { std::ostream & operator<<(std::ostream &, const String &); std::istream & operator>>(std::istream &, String &); +String operator+(const char *, const String &); + #else #error This only works with a C++ compiler #endif |