proper use of phash_map

This commit is contained in:
David Rose 2006-09-07 20:06:54 +00:00
parent a01ef2534c
commit d596a4a2af

View File

@ -86,9 +86,9 @@ public:
MayaEggTex *GetTex(const string &name, const string &fn); MayaEggTex *GetTex(const string &name, const string &fn);
void CreateSkinCluster(MayaEggMesh *M); void CreateSkinCluster(MayaEggMesh *M);
typedef phash_map<EggVertexPool *, MayaEggMesh *> MeshTable; typedef phash_map<EggVertexPool *, MayaEggMesh *, pointer_hash> MeshTable;
typedef phash_map<EggGroup *, MayaEggJoint *> JointTable; typedef phash_map<EggGroup *, MayaEggJoint *, pointer_hash> JointTable;
typedef phash_map<string, MayaEggTex *> TexTable; typedef phash_map<string, MayaEggTex *, string_hash> TexTable;
MeshTable _mesh_tab; MeshTable _mesh_tab;
JointTable _joint_tab; JointTable _joint_tab;