aboutsummaryrefslogtreecommitdiff
path: root/c++-qt/src/object.h
blob: 008ebefb0d0310aa5ffe3b35baee440ccb66a273 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#ifndef GATS_OBJECT_H
#define GATS_OBJECT_H

#include <QObject>
#include <QByteArray>

class QIODevice;

namespace Gats
{
	enum Type
	{
		typeDictionary,
		typeList,
		typeString,
		typeInteger,
		typeFloat,
		typeBoolean,
		typeNull
	};

	/**
	 * The baseclass for every type that can be stored in a packet.
	 */
	class Object : public QObject
	{
		Q_OBJECT;
	public:
		Object();
		virtual ~Object();

		virtual Object *clone() const=0;

		virtual Type getType() const =0;

		virtual void write( QIODevice &rOut ) const=0;
		virtual void read( QIODevice &rIn, char cType )=0;

		static Object *read( QIODevice &rIn );
//		static Object *strToGats( const  &sStr );

	private:
//		static Object *strToGats( QByteArray::const_iterator &i );
//		static QByteArray token( QByteArray::const_iterator &i );
//		static void skipWs( QByteArray::const_iterator &i );
	};

	const char *typeToStr( Type t );
};

//Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::Object &obj );
//Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::Type &t );

#endif