updated COLLADA-DOM to the latest bleeding-edge (1.4.1) SVN version of today
This commit is contained in:
@@ -34,6 +34,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
|
||||
@@ -57,7 +61,7 @@ public: //Accessors and Mutators
|
||||
* Sets the program attribute.
|
||||
* @param atProgram The new value for the program attribute.
|
||||
*/
|
||||
void setProgram( xsNCName atProgram ) { attrProgram = atProgram; }
|
||||
void setProgram( xsNCName atProgram ) { *(daeStringRef*)&attrProgram = atProgram; }
|
||||
|
||||
/**
|
||||
* Gets the annotate element array.
|
||||
@@ -114,6 +118,32 @@ protected:
|
||||
*/
|
||||
class domGlsl_setparam : public daeElement, public domGlsl_setparam_complexType
|
||||
{
|
||||
|
||||
public: //Accessors and Mutators
|
||||
/**
|
||||
* Gets the ref attribute.
|
||||
* @return Returns a domGlsl_identifier of the ref attribute.
|
||||
*/
|
||||
domGlsl_identifier getRef() const { return attrRef; }
|
||||
/**
|
||||
* Sets the ref attribute.
|
||||
* @param atRef The new value for the ref attribute.
|
||||
*/
|
||||
void setRef( domGlsl_identifier atRef ) { attrRef = atRef;
|
||||
_validAttributeArray[0] = true; }
|
||||
|
||||
/**
|
||||
* Gets the program attribute.
|
||||
* @return Returns a xsNCName of the program attribute.
|
||||
*/
|
||||
xsNCName getProgram() const { return attrProgram; }
|
||||
/**
|
||||
* Sets the program attribute.
|
||||
* @param atProgram The new value for the program attribute.
|
||||
*/
|
||||
void setProgram( xsNCName atProgram ) { *(daeStringRef*)&attrProgram = atProgram;
|
||||
_validAttributeArray[1] = true; }
|
||||
|
||||
protected:
|
||||
/**
|
||||
* Constructor
|
||||
|
||||
Reference in New Issue
Block a user