#ifndef __dom150Instance_articulated_system_h__ #define __dom150Instance_articulated_system_h__ #include #include <1.5/dom/domTypes.h> #include <1.5/dom/domElements.h> #include <1.5/dom/domKinematics_bind.h> #include <1.5/dom/domKinematics_setparam.h> #include <1.5/dom/domKinematics_newparam.h> #include <1.5/dom/domExtra.h> class DAE; namespace ColladaDOM150 { class domInstance_articulated_system : public daeElement { public: virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::INSTANCE_ARTICULATED_SYSTEM; } static daeInt ID() { return 450; } virtual daeInt typeID() const { return ID(); } protected: // Attributes domSid attrSid; xsAnyURI attrUrl; xsToken attrName; protected: // Elements domKinematics_bind_Array elemBind_array; domKinematics_setparam_Array elemSetparam_array; domKinematics_newparam_Array elemNewparam_array; domExtra_Array elemExtra_array; public: //Accessors and Mutators /** * Gets the sid attribute. * @return Returns a domSid of the sid attribute. */ domSid getSid() const { return attrSid; } /** * Sets the sid attribute. * @param atSid The new value for the sid attribute. */ void setSid( domSid atSid ) { *(daeStringRef*)&attrSid = atSid;} /** * Gets the url attribute. * @return Returns a xsAnyURI reference of the url attribute. */ xsAnyURI &getUrl() { return attrUrl; } /** * Gets the url attribute. * @return Returns a constant xsAnyURI reference of the url attribute. */ const xsAnyURI &getUrl() const { return attrUrl; } /** * Sets the url attribute. * @param atUrl The new value for the url attribute. */ void setUrl( const xsAnyURI &atUrl ) { attrUrl = atUrl; } /** * Sets the url attribute. * @param atUrl The new value for the url attribute. */ void setUrl( xsString atUrl ) { attrUrl = atUrl; } /** * Gets the name attribute. * @return Returns a xsToken of the name attribute. */ xsToken getName() const { return attrName; } /** * Sets the name attribute. * @param atName The new value for the name attribute. */ void setName( xsToken atName ) { *(daeStringRef*)&attrName = atName;} /** * Gets the bind element array. * @return Returns a reference to the array of bind elements. */ domKinematics_bind_Array &getBind_array() { return elemBind_array; } /** * Gets the bind element array. * @return Returns a constant reference to the array of bind elements. */ const domKinematics_bind_Array &getBind_array() const { return elemBind_array; } /** * Gets the setparam element array. * @return Returns a reference to the array of setparam elements. */ domKinematics_setparam_Array &getSetparam_array() { return elemSetparam_array; } /** * Gets the setparam element array. * @return Returns a constant reference to the array of setparam elements. */ const domKinematics_setparam_Array &getSetparam_array() const { return elemSetparam_array; } /** * Gets the newparam element array. * @return Returns a reference to the array of newparam elements. */ domKinematics_newparam_Array &getNewparam_array() { return elemNewparam_array; } /** * Gets the newparam element array. * @return Returns a constant reference to the array of newparam elements. */ const domKinematics_newparam_Array &getNewparam_array() const { return elemNewparam_array; } /** * Gets the extra element array. * @return Returns a reference to the array of extra elements. */ domExtra_Array &getExtra_array() { return elemExtra_array; } /** * Gets the extra element array. * @return Returns a constant reference to the array of extra elements. */ const domExtra_Array &getExtra_array() const { return elemExtra_array; } protected: /** * Constructor */ domInstance_articulated_system(DAE& dae) : daeElement(dae), attrSid(), attrUrl(dae, *this), attrName(), elemBind_array(), elemSetparam_array(), elemNewparam_array(), elemExtra_array() {} /** * Destructor */ virtual ~domInstance_articulated_system() {} /** * Overloaded assignment operator */ virtual domInstance_articulated_system &operator=( const domInstance_articulated_system &cpy ) { (void)cpy; return *this; } public: // STATIC METHODS /** * Creates an instance of this class and returns a daeElementRef referencing it. * @return a daeElementRef referencing an instance of this object. */ static DLLSPEC daeElementRef create(DAE& dae); /** * Creates a daeMetaElement object that describes this element in the meta object reflection framework. * If a daeMetaElement already exists it will return that instead of creating a new one. * @return A daeMetaElement describing this COLLADA element. */ static DLLSPEC daeMetaElement* registerElement(DAE& dae); }; } // ColladaDOM150 #endif