aboutsummaryrefslogtreecommitdiff
path: root/c++-qt/src/integer.h
diff options
context:
space:
mode:
Diffstat (limited to 'c++-qt/src/integer.h')
-rw-r--r--c++-qt/src/integer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/c++-qt/src/integer.h b/c++-qt/src/integer.h
index 8695a12..2dbae94 100644
--- a/c++-qt/src/integer.h
+++ b/c++-qt/src/integer.h
@@ -17,6 +17,8 @@ namespace Gats
17 Integer( int64_t iVal ); 17 Integer( int64_t iVal );
18 virtual ~Integer(); 18 virtual ~Integer();
19 19
20 virtual Object *clone() const;
21
20 virtual Type getType() const { return typeInteger; } 22 virtual Type getType() const { return typeInteger; }
21 int64_t getValue() const { return iVal; } 23 int64_t getValue() const { return iVal; }
22 24