Wm4EdgeKey.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef WM4EDGEKEY_H
00018 #define WM4EDGEKEY_H
00019
00020 #include "Wm4FoundationLIB.h"
00021 #include "Wm4System.h"
00022
00023 namespace Wm4
00024 {
00025
00026 class WM4_FOUNDATION_ITEM EdgeKey
00027 {
00028 public:
00029 EdgeKey (int iV0 = -1, int iV1 = -1);
00030 bool operator< (const EdgeKey& rkKey) const;
00031 operator size_t () const;
00032 int V[2];
00033 };
00034
00035 }
00036
00037 #include "Wm4EdgeKey.inl"
00038
00039 #endif