00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef _FBXSDK_KSET_H_
00029 #define _FBXSDK_KSET_H_
00030
00031 #include <kbaselib_h.h>
00032
00033 #include <kbaselib_nsbegin.h>
00034
00035 #define KITEM_PER_BLOCK 20
00036 #define NOT_FOUND 0x0L
00037
00038 struct SSet;
00039
00040
00041
00042
00043
00044
00045
00049 class KBASELIB_DLL KSet {
00050 public:
00055
00056
00060 KSet( int pItemPerBlock = KITEM_PER_BLOCK );
00061
00065 KSet(const KSet& other);
00066
00068 ~KSet();
00070
00071
00078 bool Add ( kReference pReference, kReference pItem );
00079
00080
00085 bool Remove ( kReference pReference );
00086
00091 bool RemoveItem ( kReference pItem );
00092
00098 bool SetItem ( kReference pReference, kReference pItem );
00099
00105 kReference Get ( kReference pReference, int* pIndex = NULL ) const;
00106
00108 void Clear();
00109
00110
00116 kReference GetFromIndex ( int pIndex, kReference* pReference = NULL )const;
00117
00122 bool RemoveFromIndex( int pIndex );
00123
00124
00128 int GetCount ()const { return mSetCount; }
00129
00130
00135 bool Swap()const;
00136
00137
00141 bool Sort()const;
00142
00144 const KSet& operator=(const KSet&);
00145
00146 private:
00147
00148 SSet* FindEqual( kReference pReference)const;
00149
00150 private:
00151 SSet* mSetArray;
00152 int mSetCount;
00153 int mBlockCount;
00154 int mItemPerBlock;
00155 mutable bool mIsChanged;
00156 };
00157
00158 #include <kbaselib_nsend.h>
00159
00160 #endif // _FBXSDK_KSET_H_
00161