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

@@ -40,14 +40,14 @@ public:
public: //Accessors and Mutators
/**
* Gets the value of this element.
* @return a xsNCName of the value.
* @return Returns a xsNCName of the value.
*/
xsNCName getValue() const { return _value; }
/**
* Sets the _value of this element.
* @param val The new value for this element.
*/
void setValue( xsNCName val ) { _value = val; }
void setValue( xsNCName val ) { *(daeStringRef*)&_value = val; }
protected:
/**
@@ -167,6 +167,10 @@ protected: // Elements
* 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: //Accessors and Mutators
@@ -246,6 +250,20 @@ protected:
*/
class domGlsl_newparam : public daeElement, public domGlsl_newparam_complexType
{
public: //Accessors and Mutators
/**
* Gets the sid attribute.
* @return Returns a domGlsl_identifier of the sid attribute.
*/
domGlsl_identifier getSid() const { return attrSid; }
/**
* Sets the sid attribute.
* @param atSid The new value for the sid attribute.
*/
void setSid( domGlsl_identifier atSid ) { attrSid = atSid;
_validAttributeArray[0] = true; }
protected:
/**
* Constructor