aboutsummaryrefslogtreecommitdiff
path: root/src/boolean.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/boolean.cpp')
-rw-r--r--src/boolean.cpp5
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
20Gats::Object *Gats::Boolean::clone() const
21{
22 return new Gats::Boolean( bVal );
23}
24
20void Gats::Boolean::write( Bu::Stream &rOut ) const 25void Gats::Boolean::write( Bu::Stream &rOut ) const
21{ 26{
22 if( bVal ) 27 if( bVal )