updated COLLADA-DOM to the latest bleeding-edge (1.4.1) SVN version of today
This commit is contained in:
@@ -68,7 +68,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.
|
||||
@@ -79,7 +80,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.
|
||||
@@ -90,7 +92,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 digits attribute.
|
||||
@@ -101,7 +104,8 @@ public: //Accessors and Mutators
|
||||
* Sets the digits attribute.
|
||||
* @param atDigits The new value for the digits attribute.
|
||||
*/
|
||||
void setDigits( xsShort atDigits ) { attrDigits = atDigits; }
|
||||
void setDigits( xsShort atDigits ) { attrDigits = atDigits;
|
||||
_validAttributeArray[3] = true; }
|
||||
|
||||
/**
|
||||
* Gets the magnitude attribute.
|
||||
@@ -112,7 +116,8 @@ public: //Accessors and Mutators
|
||||
* Sets the magnitude attribute.
|
||||
* @param atMagnitude The new value for the magnitude attribute.
|
||||
*/
|
||||
void setMagnitude( xsShort atMagnitude ) { attrMagnitude = atMagnitude; }
|
||||
void setMagnitude( xsShort atMagnitude ) { attrMagnitude = atMagnitude;
|
||||
_validAttributeArray[4] = true; }
|
||||
|
||||
/**
|
||||
* Gets the _value array.
|
||||
|
||||
Reference in New Issue
Block a user