aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-06-27 03:41:50 +0000
committerMike Buland <eichlan@xagasoft.com>2012-06-27 03:41:50 +0000
commit2d58f0bae4d1e0b69cb0106acbd4b4a48831bbb6 (patch)
treed9e5a28a2464554c6af8ed49c469aecabd2ab265
parent615d2ec911dd3eb2b5ed0290038bdb5e6fa0eab2 (diff)
downloadlibgats-2d58f0bae4d1e0b69cb0106acbd4b4a48831bbb6.tar.gz
libgats-2d58f0bae4d1e0b69cb0106acbd4b4a48831bbb6.tar.bz2
libgats-2d58f0bae4d1e0b69cb0106acbd4b4a48831bbb6.tar.xz
libgats-2d58f0bae4d1e0b69cb0106acbd4b4a48831bbb6.zip
Apparently the various value classes don't all have setters yet, they should.
-rw-r--r--c++-qt/src/integer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/c++-qt/src/integer.h b/c++-qt/src/integer.h
index 2dbae94..db36e30 100644
--- a/c++-qt/src/integer.h
+++ b/c++-qt/src/integer.h
@@ -21,6 +21,7 @@ namespace Gats
21 21
22 virtual Type getType() const { return typeInteger; } 22 virtual Type getType() const { return typeInteger; }
23 int64_t getValue() const { return iVal; } 23 int64_t getValue() const { return iVal; }
24 void setValue( int64_t iNewVal ) { iVal = iNewVal; }
24 25
25 virtual void write( QIODevice &rOut ) const; 26 virtual void write( QIODevice &rOut ) const;
26 virtual void read( QIODevice &rIn, char cType ); 27 virtual void read( QIODevice &rIn, char cType );