00001 #ifndef __domJoint_limits_h__ 00002 #define __domJoint_limits_h__ 00003 00004 #include <dae/daeDocument.h> 00005 #include <dom/domTypes.h> 00006 #include <dom/domElements.h> 00007 00008 #include <dom/domMinmax.h> 00009 class DAE; 00010 00011 class domJoint_limits : public daeElement 00012 { 00013 public: 00014 virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::JOINT_LIMITS; } 00015 static daeInt ID() { return 459; } 00016 virtual daeInt typeID() const { return ID(); } 00017 00018 protected: // Elements 00019 domMinmaxRef elemMin; 00020 domMinmaxRef elemMax; 00021 00022 public: //Accessors and Mutators 00027 const domMinmaxRef getMin() const { return elemMin; } 00032 const domMinmaxRef getMax() const { return elemMax; } 00033 protected: 00037 domJoint_limits(DAE& dae) : daeElement(dae), elemMin(), elemMax() {} 00041 virtual ~domJoint_limits() {} 00045 virtual domJoint_limits &operator=( const domJoint_limits &cpy ) { (void)cpy; return *this; } 00046 00047 public: // STATIC METHODS 00052 static DLLSPEC daeElementRef create(DAE& dae); 00058 static DLLSPEC daeMetaElement* registerElement(DAE& dae); 00059 }; 00060 00061 00062 #endif