aboutsummaryrefslogtreecommitdiff
path: root/c++-libbu++/src/string.h
diff options
context:
space:
mode:
Diffstat (limited to 'c++-libbu++/src/string.h')
-rw-r--r--c++-libbu++/src/string.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/c++-libbu++/src/string.h b/c++-libbu++/src/string.h
index b37137e..eae60e3 100644
--- a/c++-libbu++/src/string.h
+++ b/c++-libbu++/src/string.h
@@ -30,6 +30,13 @@ namespace Gats
30 virtual void write( Bu::Stream &rOut ) const; 30 virtual void write( Bu::Stream &rOut ) const;
31 virtual void read( Bu::Stream &rIn, char cType ); 31 virtual void read( Bu::Stream &rIn, char cType );
32 32
33 Gats::String &operator=( const char *s );
34 Gats::String &operator=( const Gats::String &s );
35 Gats::String &operator=( const Bu::String &s );
36 bool operator==( const char *s ) const;
37 bool operator==( const Gats::String &s ) const;
38 bool operator==( const Bu::String &s ) const;
39
33 private: 40 private:
34 }; 41 };
35}; 42};