All Classes Functions Variables Typedefs Friends Pages
IDataRow.h
1 //------------------------------------------------------------------------------
2 //
3 // Copyright (c) 2012 Glympse Inc. All rights reserved.
4 //
5 //------------------------------------------------------------------------------
6 
7 #ifndef IDATAROW_H__GLYMPSE__
8 #define IDATAROW_H__GLYMPSE__
9 
10 namespace Glympse
11 {
12 
16 /*O*public**/ struct IDataRow : public ICommon
17 {
18  public: virtual int64 getTime() = 0;
19 
20  public: virtual int64 getPartnerId() = 0;
21 
22  public: virtual GString getName() = 0;
23 
24  public: virtual GPrimitive getValue() = 0;
25 };
26 
27 /*C*/typedef O< IDataRow > GDataRow;
28 
29 }
30 
31 #endif // !IDATAROW_H__GLYMPSE__