From 1b797548dff7e2475826ba29a71c3f496008988f Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Sat, 14 Aug 2010 07:12:29 +0000 Subject: libgats gets it's own repo. The rest of the history is in my misc repo. --- src/string.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/string.h (limited to 'src/string.h') diff --git a/src/string.h b/src/string.h new file mode 100644 index 0000000..5343ba8 --- /dev/null +++ b/src/string.h @@ -0,0 +1,26 @@ +#ifndef GATS_STRING_H +#define GATS_STRING_H + +#include "gats/object.h" +#include + +namespace Gats +{ + class String : public Gats::Object, public Bu::FString + { + public: + String(); + String( const String &s ); + String( const Bu::FString &s ); + virtual ~String(); + + virtual Type getType() const { return typeString; } + + virtual void write( Bu::Stream &rOut ) const; + virtual void read( Bu::Stream &rIn, char cType ); + + private: + }; +}; + +#endif -- cgit v1.2.3