aboutsummaryrefslogtreecommitdiff
path: root/c++-libbu++/src/boolean.h
diff options
context:
space:
mode:
Diffstat (limited to 'c++-libbu++/src/boolean.h')
-rw-r--r--c++-libbu++/src/boolean.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/c++-libbu++/src/boolean.h b/c++-libbu++/src/boolean.h
index 2fed713..ac01762 100644
--- a/c++-libbu++/src/boolean.h
+++ b/c++-libbu++/src/boolean.h
@@ -27,6 +27,11 @@ namespace Gats
27 virtual void write( Bu::Stream &rOut ) const; 27 virtual void write( Bu::Stream &rOut ) const;
28 virtual void read( Bu::Stream &rIn, char cType ); 28 virtual void read( Bu::Stream &rIn, char cType );
29 29
30 Gats::Boolean &operator=( const Gats::Boolean &rhs );
31 Gats::Boolean &operator=( bool rhs );
32 bool operator==( const Gats::Boolean &rhs ) const;
33 bool operator==( bool rhs ) const;
34
30 private: 35 private:
31 bool bVal; 36 bool bVal;
32 }; 37 };