blob: 44f9da700e99cd439dc37bf9ed87e843b2e39c5f (
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
|
#ifndef GATS_OBJECT_H
#define GATS_OBJECT_H
namespace Bu
{
class Stream;
class Formatter;
};
namespace Gats
{
enum Type
{
typeDictionary,
typeList,
typeString,
typeInteger,
typeFloat,
typeBoolean
};
/**
* The baseclass for every type that can be stored in a packet.
*/
class Object
{
public:
Object();
virtual ~Object();
virtual Type getType() const =0;
virtual void write( Bu::Stream &rOut ) const=0;
virtual void read( Bu::Stream &rIn, char cType )=0;
static Object *read( Bu::Stream &rIn );
};
};
Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::Object &obj );
#endif
|