diff options
Diffstat (limited to 'src/boolean.cpp')
-rw-r--r-- | src/boolean.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/boolean.cpp b/src/boolean.cpp index e0600f2..729e644 100644 --- a/src/boolean.cpp +++ b/src/boolean.cpp | |||
@@ -17,6 +17,11 @@ Gats::Boolean::~Boolean() | |||
17 | { | 17 | { |
18 | } | 18 | } |
19 | 19 | ||
20 | Gats::Object *Gats::Boolean::clone() const | ||
21 | { | ||
22 | return new Gats::Boolean( bVal ); | ||
23 | } | ||
24 | |||
20 | void Gats::Boolean::write( Bu::Stream &rOut ) const | 25 | void Gats::Boolean::write( Bu::Stream &rOut ) const |
21 | { | 26 | { |
22 | if( bVal ) | 27 | if( bVal ) |