All Classes Functions Variables Typedefs Friends Pages
IDataEvent.h
1 //------------------------------------------------------------------------------
2 //
3 // Copyright (c) 2012 Glympse Inc. All rights reserved.
4 //
5 //------------------------------------------------------------------------------
6 
7 #ifndef IDATAEVENT_H__GLYMPSE__
8 #define IDATAEVENT_H__GLYMPSE__
9 
10 namespace Glympse
11 {
12 
16 /*O*public**/ struct IDataEvent : public ICommon
17 {
18  public: virtual GTicket getTicket() = 0;
19 
20  public: virtual GArray<GDataRow>::ptr getProperties() = 0;
21 };
22 
23 /*C*/typedef O< IDataEvent > GDataEvent;
24 
25 }
26 
27 #endif // !IDATAEVENT_H__GLYMPSE__