From 2d58f0bae4d1e0b69cb0106acbd4b4a48831bbb6 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 27 Jun 2012 03:41:50 +0000 Subject: Apparently the various value classes don't all have setters yet, they should. --- c++-qt/src/integer.h | 1 + 1 file changed, 1 insertion(+) 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 virtual Type getType() const { return typeInteger; } int64_t getValue() const { return iVal; } + void setValue( int64_t iNewVal ) { iVal = iNewVal; } virtual void write( QIODevice &rOut ) const; virtual void read( QIODevice &rIn, char cType ); -- cgit v1.2.3