All Classes Functions Variables Typedefs Friends Pages
ICardActivity.h
1 //------------------------------------------------------------------------------
2 //
3 // Copyright (c) 2015 Glympse Inc. All rights reserved.
4 //
5 //------------------------------------------------------------------------------
6 
7 #ifndef ICARDACTIVITY_H__GLYMPSE__
8 #define ICARDACTIVITY_H__GLYMPSE__
9 
10 namespace Glympse
11 {
12 
16 /*O*public**/ struct ICardActivity : public IEventSink
17 {
21  public: virtual GArray<GCardEvent>::ptr getEvents() = 0;
22 
28  public: virtual GCardEvent getMostRecentEvent() = 0;
29 
33  public: virtual GString getCardId() = 0;
34 
40  public: virtual bool isSynced() = 0;
41 };
42 
44 
45 }
46 
47 #endif // !ICARDACTIVITY_H__GLYMPSE__