All Classes Functions Variables Typedefs Friends Pages
ILong.h
1 //------------------------------------------------------------------------------
2 //
3 // Copyright (c) 2012 Glympse Inc. All rights reserved.
4 //
5 //------------------------------------------------------------------------------
6 
7 #ifndef ILONG_H__GLYMPSE__
8 #define ILONG_H__GLYMPSE__
9 
10 namespace Glympse
11 {
12 
13 /*C*/
14 struct ILong;
15 typedef O< ILong > GLong;
16 
17 
21 /*O*public**/ struct ILong : public ICommon
22 {
28  public: virtual int64 longValue() = 0;
29 };
30 
31 }
32 
33 #endif // !ILONG_H__GLYMPSE__