00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef VERTEXMEMBERSHIP_H
00016 #define VERTEXMEMBERSHIP_H
00017
00018 #include "pandatoolbase.h"
00019
00020 #include "pvector.h"
00021
00022 class EggGroup;
00023
00024
00025
00026
00027
00028
00029 class VertexMembership {
00030 public:
00031 INLINE VertexMembership(EggGroup *group, double membership);
00032 INLINE VertexMembership(const VertexMembership ©);
00033 INLINE void operator = (const VertexMembership ©);
00034
00035 INLINE bool operator < (const VertexMembership &other) const;
00036
00037 EggGroup *_group;
00038 double _membership;
00039 };
00040
00041 typedef pvector<VertexMembership> VertexMemberships;
00042
00043 #include "vertexMembership.I"
00044
00045 #endif
00046