All Classes Functions Variables Typedefs Friends Pages
IComparable.h
1 //------------------------------------------------------------------------------
2 //
3 // Copyright (c) 2012 Glympse Inc. All rights reserved.
4 //
5 //------------------------------------------------------------------------------
6 
7 #ifndef ICOMPARABLE_H__GLYMPSE__
8 #define ICOMPARABLE_H__GLYMPSE__
9 
10 namespace Glympse
11 {
12 
18 /*O*public**/ struct IComparable : public virtual ICommon
19 {
29  public: virtual bool isEqual(const GCommon& o) = 0;
30 };
31 
32 /*C*/typedef O< IComparable > GComparable;
33 
34 }
35 
36 #endif // !ICOMPARABLE_H__GLYMPSE__