updated COLLADA-DOM to the latest bleeding-edge (1.4.1) SVN version of today
This commit is contained in:
@@ -78,7 +78,8 @@ public: //Accessors and Mutators
|
||||
* Sets the id attribute.
|
||||
* @param atId The new value for the id attribute.
|
||||
*/
|
||||
void setId( xsID atId ) { attrId = atId; }
|
||||
void setId( xsID atId ) { *(daeStringRef*)&attrId = atId;
|
||||
_validAttributeArray[0] = true; }
|
||||
|
||||
/**
|
||||
* Gets the name attribute.
|
||||
@@ -89,7 +90,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[1] = true; }
|
||||
|
||||
/**
|
||||
* Gets the start attribute.
|
||||
@@ -100,7 +102,8 @@ public: //Accessors and Mutators
|
||||
* Sets the start attribute.
|
||||
* @param atStart The new value for the start attribute.
|
||||
*/
|
||||
void setStart( xsDouble atStart ) { attrStart = atStart; }
|
||||
void setStart( xsDouble atStart ) { attrStart = atStart;
|
||||
_validAttributeArray[2] = true; }
|
||||
|
||||
/**
|
||||
* Gets the end attribute.
|
||||
@@ -111,7 +114,8 @@ public: //Accessors and Mutators
|
||||
* Sets the end attribute.
|
||||
* @param atEnd The new value for the end attribute.
|
||||
*/
|
||||
void setEnd( xsDouble atEnd ) { attrEnd = atEnd; }
|
||||
void setEnd( xsDouble atEnd ) { attrEnd = atEnd;
|
||||
_validAttributeArray[3] = true; }
|
||||
|
||||
/**
|
||||
* Gets the asset element.
|
||||
|
||||
Reference in New Issue
Block a user