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

@@ -42,6 +42,10 @@ protected: // Attribute
* Used to preserve order in elements that do not specify strict sequencing of sub-elements.
*/
daeElementRefArray _contents;
/**
* Used to preserve order in elements that have a complex content model.
*/
daeUIntArray _contentsOrder;
public:
/**
@@ -81,7 +85,7 @@ public:
* Sets the _value of this element.
* @param val The new value for this element.
*/
void setValue( daeString val ) { _value = val; }
void setValue( daeString val ) { *(daeStringRef*)&_value = val; }
protected:
/**