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

@@ -67,7 +67,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.
@@ -78,7 +79,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 count attribute.
@@ -89,7 +91,8 @@ public: //Accessors and Mutators
* Sets the count attribute.
* @param atCount The new value for the count attribute.
*/
void setCount( domUint atCount ) { attrCount = atCount; }
void setCount( domUint atCount ) { attrCount = atCount;
_validAttributeArray[2] = true; }
/**
* Gets the minInclusive attribute.
@@ -100,7 +103,8 @@ public: //Accessors and Mutators
* Sets the minInclusive attribute.
* @param atMinInclusive The new value for the minInclusive attribute.
*/
void setMinInclusive( xsInteger atMinInclusive ) { attrMinInclusive = atMinInclusive; }
void setMinInclusive( xsInteger atMinInclusive ) { attrMinInclusive = atMinInclusive;
_validAttributeArray[3] = true; }
/**
* Gets the maxInclusive attribute.
@@ -111,7 +115,8 @@ public: //Accessors and Mutators
* Sets the maxInclusive attribute.
* @param atMaxInclusive The new value for the maxInclusive attribute.
*/
void setMaxInclusive( xsInteger atMaxInclusive ) { attrMaxInclusive = atMaxInclusive; }
void setMaxInclusive( xsInteger atMaxInclusive ) { attrMaxInclusive = atMaxInclusive;
_validAttributeArray[4] = true; }
/**
* Gets the _value array.