diff options
Diffstat (limited to 'c++-qt/src/boolean.h')
-rw-r--r-- | c++-qt/src/boolean.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/c++-qt/src/boolean.h b/c++-qt/src/boolean.h index 4eec690..d707e4d 100644 --- a/c++-qt/src/boolean.h +++ b/c++-qt/src/boolean.h | |||
@@ -15,6 +15,8 @@ namespace Gats | |||
15 | Boolean( bool bVal ); | 15 | Boolean( bool bVal ); |
16 | virtual ~Boolean(); | 16 | virtual ~Boolean(); |
17 | 17 | ||
18 | virtual Object *clone() const; | ||
19 | |||
18 | virtual Type getType() const { return typeBoolean; } | 20 | virtual Type getType() const { return typeBoolean; } |
19 | bool getValue() const { return bVal; } | 21 | bool getValue() const { return bVal; } |
20 | void setValue( bool b ) { bVal = b; } | 22 | void setValue( bool b ) { bVal = b; } |