From 701b05de4d2e79afd88ef8ddf93ba0fcc0eb5b14 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 27 Jul 2020 11:23:11 -0700 Subject: Added Qt style compliant value getters. --- c++-qt/gats-qt/boolean.h | 1 + 1 file changed, 1 insertion(+) (limited to 'c++-qt/gats-qt/boolean.h') diff --git a/c++-qt/gats-qt/boolean.h b/c++-qt/gats-qt/boolean.h index 04a9cef..e6d10af 100644 --- a/c++-qt/gats-qt/boolean.h +++ b/c++-qt/gats-qt/boolean.h @@ -26,6 +26,7 @@ namespace Gats virtual Type getType() const { return typeBoolean; } bool getValue() const { return bVal; } + bool value() const { return bVal; } void setValue( bool b ) { bVal = b; } virtual void write( QIODevice &rOut ) const; -- cgit v1.2.3