From 3cbd1038e20dcb2b25db4e74666ec21766642729 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 6 Apr 2022 23:45:42 -0700 Subject: 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? --- c++-qt/gats-qt/boolean.h | 2 ++ c++-qt/gats-qt/dictionary.h | 2 ++ c++-qt/gats-qt/float.h | 2 ++ c++-qt/gats-qt/integer.h | 2 ++ c++-qt/gats-qt/list.h | 2 ++ c++-qt/gats-qt/null.h | 2 ++ c++-qt/gats-qt/object.h | 2 ++ c++-qt/gats-qt/string.h | 2 ++ 8 files changed, 16 insertions(+) (limited to 'c++-qt/gats-qt') diff --git a/c++-qt/gats-qt/boolean.h b/c++-qt/gats-qt/boolean.h index e6d10af..07dcbc3 100644 --- a/c++-qt/gats-qt/boolean.h +++ b/c++-qt/gats-qt/boolean.h @@ -31,6 +31,8 @@ namespace Gats virtual void write( QIODevice &rOut ) const; virtual void read( QIODevice &rIn, char cType ); + + virtual QString toString( int iIndent=0 ) const; private: bool bVal; diff --git a/c++-qt/gats-qt/dictionary.h b/c++-qt/gats-qt/dictionary.h index b1b6051..6f9e82a 100644 --- a/c++-qt/gats-qt/dictionary.h +++ b/c++-qt/gats-qt/dictionary.h @@ -30,6 +30,8 @@ namespace Gats virtual Type getType() const { return typeDictionary; } virtual void write( QIODevice &rOut ) const; virtual void read( QIODevice &rIn, char cType ); + + virtual QString toString( int iIndent=0 ) const; void insert( const QByteArray &sKey, const char *s ); void insert( const QByteArray &sKey, const QByteArray &s ); diff --git a/c++-qt/gats-qt/float.h b/c++-qt/gats-qt/float.h index 5a1ff4b..453d000 100644 --- a/c++-qt/gats-qt/float.h +++ b/c++-qt/gats-qt/float.h @@ -28,6 +28,8 @@ namespace Gats virtual void write( QIODevice &rOut ) const; virtual void read( QIODevice &rIn, char cType ); + + virtual QString toString( int iIndent=0 ) const; private: double fVal; 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 virtual void write( QIODevice &rOut ) const; virtual void read( QIODevice &rIn, char cType ); + + virtual QString toString( int iIndent=0 ) const; template static void readPackedInt( QIODevice &rStream, itype &rOut ) diff --git a/c++-qt/gats-qt/list.h b/c++-qt/gats-qt/list.h index 27c17c3..f87ddd7 100644 --- a/c++-qt/gats-qt/list.h +++ b/c++-qt/gats-qt/list.h @@ -29,6 +29,8 @@ namespace Gats virtual void write( QIODevice &rOut ) const; virtual void read( QIODevice &rIn, char cType ); + + virtual QString toString( int iIndent=0 ) const; void append( const char *s ); void append( const QByteArray &s ); diff --git a/c++-qt/gats-qt/null.h b/c++-qt/gats-qt/null.h index 974ae09..7bf309a 100644 --- a/c++-qt/gats-qt/null.h +++ b/c++-qt/gats-qt/null.h @@ -27,6 +27,8 @@ namespace Gats virtual void write( QIODevice &rOut ) const; virtual void read( QIODevice &rIn, char cType ); + + virtual QString toString( int iIndent=0 ) const; }; }; diff --git a/c++-qt/gats-qt/object.h b/c++-qt/gats-qt/object.h index 6d602de..8d64c38 100644 --- a/c++-qt/gats-qt/object.h +++ b/c++-qt/gats-qt/object.h @@ -42,6 +42,8 @@ namespace Gats virtual void write( QIODevice &rOut ) const=0; virtual void read( QIODevice &rIn, char cType )=0; + + virtual QString toString( int iIndent=0 ) const = 0; static Object *read( QIODevice &rIn ); // static Object *strToGats( const &sStr ); diff --git a/c++-qt/gats-qt/string.h b/c++-qt/gats-qt/string.h index 1e87db5..443c5a8 100644 --- a/c++-qt/gats-qt/string.h +++ b/c++-qt/gats-qt/string.h @@ -31,6 +31,8 @@ namespace Gats virtual void write( QIODevice &rOut ) const; virtual void read( QIODevice &rIn, char cType ); + + virtual QString toString( int iIndent=0 ) const; private: }; -- cgit v1.2.3