00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef MAYAEGGGROUPUSERDATA_H
00016 #define MAYAEGGGROUPUSERDATA_H
00017
00018 #include "pandatoolbase.h"
00019 #include "eggUserData.h"
00020
00021
00022
00023
00024
00025
00026
00027 class MayaEggGroupUserData : public EggUserData {
00028 public:
00029 INLINE MayaEggGroupUserData();
00030 INLINE MayaEggGroupUserData(const MayaEggGroupUserData ©);
00031 INLINE void operator = (const MayaEggGroupUserData ©);
00032
00033 bool _vertex_color;
00034 bool _double_sided;
00035
00036 public:
00037 static TypeHandle get_class_type() {
00038 return _type_handle;
00039 }
00040 static void init_type() {
00041 EggUserData::init_type();
00042 register_type(_type_handle, "MayaEggGroupUserData",
00043 EggUserData::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 #include "mayaEggGroupUserData.I"
00055
00056 #endif