updated COLLADA-DOM to the latest bleeding-edge (1.4.1) SVN version of today

This commit is contained in:
ejcoumans
2006-07-26 18:58:09 +00:00
parent 750af5c197
commit 7038e5c736
353 changed files with 21354 additions and 6259 deletions

View File

@@ -61,7 +61,8 @@ public: //Accessors and Mutators
* Sets the name attribute.
* @param atName The new value for the name attribute.
*/
void setName( xsNCName atName ) { attrName = atName; }
void setName( xsNCName atName ) { *(daeStringRef*)&attrName = atName;
_validAttributeArray[0] = true; }
/**
* Gets the sid attribute.
@@ -72,7 +73,8 @@ public: //Accessors and Mutators
* Sets the sid attribute.
* @param atSid The new value for the sid attribute.
*/
void setSid( xsNCName atSid ) { attrSid = atSid; }
void setSid( xsNCName atSid ) { *(daeStringRef*)&attrSid = atSid;
_validAttributeArray[1] = true; }
/**
* Gets the semantic attribute.
@@ -83,7 +85,8 @@ public: //Accessors and Mutators
* Sets the semantic attribute.
* @param atSemantic The new value for the semantic attribute.
*/
void setSemantic( xsNMTOKEN atSemantic ) { attrSemantic = atSemantic; }
void setSemantic( xsNMTOKEN atSemantic ) { *(daeStringRef*)&attrSemantic = atSemantic;
_validAttributeArray[2] = true; }
/**
* Gets the type attribute.
@@ -94,18 +97,19 @@ public: //Accessors and Mutators
* Sets the type attribute.
* @param atType The new value for the type attribute.
*/
void setType( xsNMTOKEN atType ) { attrType = atType; }
void setType( xsNMTOKEN atType ) { *(daeStringRef*)&attrType = atType;
_validAttributeArray[3] = true; }
/**
* Gets the value of this element.
* @return a xsString of the value.
* @return Returns a xsString of the value.
*/
xsString getValue() const { return _value; }
/**
* Sets the _value of this element.
* @param val The new value for this element.
*/
void setValue( xsString val ) { _value = val; }
void setValue( xsString val ) { *(daeStringRef*)&_value = val; }
protected:
/**