00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef EGGPOOLUNIQUIFIER_H
00016 #define EGGPOOLUNIQUIFIER_H
00017
00018 #include "pandabase.h"
00019
00020 #include "eggNameUniquifier.h"
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 class EXPCL_PANDAEGG EggPoolUniquifier : public EggNameUniquifier {
00031 PUBLISHED:
00032 EggPoolUniquifier();
00033
00034 virtual string get_category(EggNode *node);
00035
00036 public:
00037 static TypeHandle get_class_type() {
00038 return _type_handle;
00039 }
00040 static void init_type() {
00041 EggNameUniquifier::init_type();
00042 register_type(_type_handle, "EggPoolUniquifier",
00043 EggNameUniquifier::get_class_type());
00044 }
00045 virtual TypeHandle get_type() const {
00046 return get_class_type();
00047 }
00048 virtual TypeHandle force_init_type() {init_type(); return get_class_type();}
00049
00050 private:
00051 static TypeHandle _type_handle;
00052
00053 };
00054
00055 #endif
00056
00057