All Classes Functions Variables Typedefs Friends Pages
IUserTicket.h
1 //------------------------------------------------------------------------------
2 //
3 // Copyright (c) 2012 Glympse Inc. All rights reserved.
4 //
5 //------------------------------------------------------------------------------
6 
7 #ifndef IUSERTICKET_H__GLYMPSE__
8 #define IUSERTICKET_H__GLYMPSE__
9 
10 namespace Glympse
11 {
12 
16 /*O*public**/ struct IUserTicket : public ICommon
17 {
21  public: virtual GUser getUser() = 0;
22 
27  public: virtual GTicket getTicket() = 0;
28 
33  public: virtual GInvite getInvite() = 0;
34 };
35 
36 /*C*/typedef O< IUserTicket > GUserTicket;
37 
38 }
39 
40 #endif // !IUSERTICKET_H__GLYMPSE__