updated COLLADA-DOM to the latest bleeding-edge (1.4.1) SVN version of today
This commit is contained in:
@@ -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:
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user