All Classes Functions Variables Typedefs Friends Pages
ICardObject.h
1 //------------------------------------------------------------------------------
2 //
3 // Copyright (c) 2017 Glympse Inc. All rights reserved.
4 //
5 //------------------------------------------------------------------------------
6 
7 #ifndef ICARDOBJECT_H__GLYMPSE__
8 #define ICARDOBJECT_H__GLYMPSE__
9 
10 namespace Glympse
11 {
12 
16 /*O*public**/ struct ICardObject : public ICommon
17 {
21  public: virtual GPrimitive getData() = 0;
22 
26  public: virtual GString getId() = 0;
27 
31  public: virtual GString getType() = 0;
32 
36  public: virtual GString getMemberId() = 0;
37 
41  public: virtual GString getUserId() = 0;
42 
46  public: virtual GString getCardId() = 0;
47 };
48 
49 /*C*/typedef O< ICardObject > GCardObject;
50 
51 }
52 
53 #endif // !ICARDOBJECT_H__GLYMPSE__