AppCore
Loading...
Searching...
No Matches
ds_event.h
Go to the documentation of this file.
1#ifndef DS_EVENT_H
2#define DS_EVENT_H
3
4#include "ds_typedefs.h"
5
7{
8public:
9 DS_Event();
10 virtual ~DS_Event();
11
17 void SetType( long type, long subType );
18
23 long GetType() const;
24
29 long GetSubType() const;
30
37 ds_string GetValue( const ds_string &key ) const;
38
44 void SetValue( const ds_string &key, const ds_string &value );
45
46private:
47 class DataClass;
48 DataClass *d;
49};
50
51#endif
std::string ds_string
Definition ds_typedefs.h:9
Definition ds_event.h:7
long GetType() const
Definition ds_event.cpp:43
long GetSubType() const
Definition ds_event.cpp:48
void SetValue(const ds_string &key, const ds_string &value)
Definition ds_event.cpp:58
ds_string GetValue(const ds_string &key) const
Definition ds_event.cpp:53
DS_Event()
Definition ds_event.cpp:27
void SetType(long type, long subType)
Definition ds_event.cpp:37
virtual ~DS_Event()
Definition ds_event.cpp:32