All Classes Functions Variables Typedefs Friends Pages
IApplication.h
1 //------------------------------------------------------------------------------
2 //
3 // Copyright (c) 2014 Glympse Inc. All rights reserved.
4 //
5 //------------------------------------------------------------------------------
6 
7 #ifndef IAPPLICATION_H__GLYMPSE__
8 #define IAPPLICATION_H__GLYMPSE__
9 
10 namespace Glympse
11 {
12 
17 /*O*public**/ struct IApplication : public IAppProfile
18 {
24  public: virtual GInvite createInvite() = 0;
25 
33  public: virtual bool canAddressPerson() = 0;
34 };
35 
36 /*C*/typedef O< IApplication > GApplication;
37 
38 }
39 
40 #endif // !IAPPLICATION_H__GLYMPSE__