AppCore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 
6 class DS_Event
7 {
8 public:
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 
46 private:
47  class DataClass;
48  DataClass *d;
49 };
50 
51 #endif
void SetValue(const ds_string &key, const ds_string &value)
Definition: ds_event.cpp:58
EEventTripTicketPr __EDATAPTR d
Definition: EEventTripTicket.h:96
virtual ~DS_Event()
Definition: ds_event.cpp:32
Definition: ds_event.h:6
long GetSubType() const
Definition: ds_event.cpp:48
long GetType() const
Definition: ds_event.cpp:43
DS_Event()
Definition: ds_event.cpp:27
__ECLASS DataClass
Definition: EEventUpdateCustomerData.h:35
std::string ds_string
Definition: ds_typedefs.h:9
void SetType(long type, long subType)
Definition: ds_event.cpp:37
ds_string GetValue(const ds_string &key) const
Definition: ds_event.cpp:53