aboutsummaryrefslogtreecommitdiff
path: root/c++-qt/gats-qt/integer.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2022-04-06 23:45:42 -0700
committerMike Buland <eichlan@xagasoft.com>2022-04-06 23:45:42 -0700
commit3cbd1038e20dcb2b25db4e74666ec21766642729 (patch)
tree1fab95855d344196a44feadda75bfc0a5a63b61f /c++-qt/gats-qt/integer.h
parentb522669649e81c61c6a5e390991b8fd70bfdeed9 (diff)
downloadlibgats-3cbd1038e20dcb2b25db4e74666ec21766642729.tar.gz
libgats-3cbd1038e20dcb2b25db4e74666ec21766642729.tar.bz2
libgats-3cbd1038e20dcb2b25db4e74666ec21766642729.tar.xz
libgats-3cbd1038e20dcb2b25db4e74666ec21766642729.zip
toString works.
It does indent automatically. I figure, you know, if you're converting to a string then a big part of the reason is so you can read it. In that case, why make it optional?
Diffstat (limited to '')
-rw-r--r--c++-qt/gats-qt/integer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/c++-qt/gats-qt/integer.h b/c++-qt/gats-qt/integer.h
index 3427682..2f08d43 100644
--- a/c++-qt/gats-qt/integer.h
+++ b/c++-qt/gats-qt/integer.h
@@ -33,6 +33,8 @@ namespace Gats
33 33
34 virtual void write( QIODevice &rOut ) const; 34 virtual void write( QIODevice &rOut ) const;
35 virtual void read( QIODevice &rIn, char cType ); 35 virtual void read( QIODevice &rIn, char cType );
36
37 virtual QString toString( int iIndent=0 ) const;
36 38
37 template<typename itype> 39 template<typename itype>
38 static void readPackedInt( QIODevice &rStream, itype &rOut ) 40 static void readPackedInt( QIODevice &rStream, itype &rOut )