DYT/Tool/3rdParty_x64/include/1.5/dom/domGles_pipeline_settings.h
2024-11-22 23:19:31 +08:00

5901 lines
189 KiB
C++

#ifndef __dom150Gles_pipeline_settings_h__
#define __dom150Gles_pipeline_settings_h__
#include <dae/daeDocument.h>
#include <1.5/dom/domTypes.h>
#include <1.5/dom/domElements.h>
#include <1.5/dom/domGles_texture_pipeline.h>
class DAE;
namespace ColladaDOM150 {
/**
* A group that contains the renderstates available for the GLES profile.
*/
class domGles_pipeline_settings : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::GLES_PIPELINE_SETTINGS; }
static daeInt ID() { return 855; }
virtual daeInt typeID() const { return ID(); }
public:
class domAlpha_func;
typedef daeSmartRef<domAlpha_func> domAlpha_funcRef;
typedef daeTArray<domAlpha_funcRef> domAlpha_func_Array;
class domAlpha_func : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::ALPHA_FUNC; }
static daeInt ID() { return 856; }
virtual daeInt typeID() const { return ID(); }
public:
class domFunc;
typedef daeSmartRef<domFunc> domFuncRef;
typedef daeTArray<domFuncRef> domFunc_Array;
class domFunc : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::FUNC; }
static daeInt ID() { return 857; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domGl_func attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domGl_func of the value attribute.
*/
domGl_func getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domGl_func atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domFunc(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domFunc() {}
/**
* Overloaded assignment operator
*/
virtual domFunc &operator=( const domFunc &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domValue;
typedef daeSmartRef<domValue> domValueRef;
typedef daeTArray<domValueRef> domValue_Array;
class domValue : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::VALUE; }
static daeInt ID() { return 858; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domGl_alpha_value attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domGl_alpha_value of the value attribute.
*/
domGl_alpha_value getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domGl_alpha_value atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domValue(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domValue() {}
/**
* Overloaded assignment operator
*/
virtual domValue &operator=( const domValue &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
protected: // Elements
domFuncRef elemFunc;
domValueRef elemValue;
public: //Accessors and Mutators
/**
* Gets the func element.
* @return a daeSmartRef to the func element.
*/
const domFuncRef getFunc() const { return elemFunc; }
/**
* Gets the value element.
* @return a daeSmartRef to the value element.
*/
const domValueRef getValue() const { return elemValue; }
protected:
/**
* Constructor
*/
domAlpha_func(DAE& dae) : daeElement(dae), elemFunc(), elemValue() {}
/**
* Destructor
*/
virtual ~domAlpha_func() {}
/**
* Overloaded assignment operator
*/
virtual domAlpha_func &operator=( const domAlpha_func &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domBlend_func;
typedef daeSmartRef<domBlend_func> domBlend_funcRef;
typedef daeTArray<domBlend_funcRef> domBlend_func_Array;
class domBlend_func : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::BLEND_FUNC; }
static daeInt ID() { return 859; }
virtual daeInt typeID() const { return ID(); }
public:
class domSrc;
typedef daeSmartRef<domSrc> domSrcRef;
typedef daeTArray<domSrcRef> domSrc_Array;
class domSrc : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::SRC; }
static daeInt ID() { return 860; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domGl_blend attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domGl_blend of the value attribute.
*/
domGl_blend getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domGl_blend atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domSrc(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domSrc() {}
/**
* Overloaded assignment operator
*/
virtual domSrc &operator=( const domSrc &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domDest;
typedef daeSmartRef<domDest> domDestRef;
typedef daeTArray<domDestRef> domDest_Array;
class domDest : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::DEST; }
static daeInt ID() { return 861; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domGl_blend attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domGl_blend of the value attribute.
*/
domGl_blend getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domGl_blend atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domDest(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domDest() {}
/**
* Overloaded assignment operator
*/
virtual domDest &operator=( const domDest &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
protected: // Elements
domSrcRef elemSrc;
domDestRef elemDest;
public: //Accessors and Mutators
/**
* Gets the src element.
* @return a daeSmartRef to the src element.
*/
const domSrcRef getSrc() const { return elemSrc; }
/**
* Gets the dest element.
* @return a daeSmartRef to the dest element.
*/
const domDestRef getDest() const { return elemDest; }
protected:
/**
* Constructor
*/
domBlend_func(DAE& dae) : daeElement(dae), elemSrc(), elemDest() {}
/**
* Destructor
*/
virtual ~domBlend_func() {}
/**
* Overloaded assignment operator
*/
virtual domBlend_func &operator=( const domBlend_func &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domClip_plane;
typedef daeSmartRef<domClip_plane> domClip_planeRef;
typedef daeTArray<domClip_planeRef> domClip_plane_Array;
class domClip_plane : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::CLIP_PLANE; }
static daeInt ID() { return 862; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domBool4 attrValue;
xsNCName attrParam;
domGles_max_clip_planes_index attrIndex;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domBool4 of the value attribute.
*/
domBool4 getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domBool4 atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
/**
* Gets the index attribute.
* @return Returns a domGles_max_clip_planes_index of the index attribute.
*/
domGles_max_clip_planes_index getIndex() const { return attrIndex; }
/**
* Sets the index attribute.
* @param atIndex The new value for the index attribute.
*/
void setIndex( domGles_max_clip_planes_index atIndex ) { attrIndex = atIndex; _validAttributeArray[2] = true; }
protected:
/**
* Constructor
*/
domClip_plane(DAE& dae) : daeElement(dae), attrValue(), attrParam(), attrIndex() {}
/**
* Destructor
*/
virtual ~domClip_plane() {}
/**
* Overloaded assignment operator
*/
virtual domClip_plane &operator=( const domClip_plane &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domColor_mask;
typedef daeSmartRef<domColor_mask> domColor_maskRef;
typedef daeTArray<domColor_maskRef> domColor_mask_Array;
class domColor_mask : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::COLOR_MASK; }
static daeInt ID() { return 863; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domBool4 attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domBool4 of the value attribute.
*/
domBool4 getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domBool4 atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domColor_mask(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domColor_mask() {}
/**
* Overloaded assignment operator
*/
virtual domColor_mask &operator=( const domColor_mask &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domCull_face;
typedef daeSmartRef<domCull_face> domCull_faceRef;
typedef daeTArray<domCull_faceRef> domCull_face_Array;
class domCull_face : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::CULL_FACE; }
static daeInt ID() { return 864; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domGl_face attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domGl_face of the value attribute.
*/
domGl_face getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domGl_face atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domCull_face(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domCull_face() {}
/**
* Overloaded assignment operator
*/
virtual domCull_face &operator=( const domCull_face &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domDepth_func;
typedef daeSmartRef<domDepth_func> domDepth_funcRef;
typedef daeTArray<domDepth_funcRef> domDepth_func_Array;
class domDepth_func : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::DEPTH_FUNC; }
static daeInt ID() { return 865; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domGl_func attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domGl_func of the value attribute.
*/
domGl_func getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domGl_func atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domDepth_func(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domDepth_func() {}
/**
* Overloaded assignment operator
*/
virtual domDepth_func &operator=( const domDepth_func &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domDepth_mask;
typedef daeSmartRef<domDepth_mask> domDepth_maskRef;
typedef daeTArray<domDepth_maskRef> domDepth_mask_Array;
class domDepth_mask : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::DEPTH_MASK; }
static daeInt ID() { return 866; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domDepth_mask(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domDepth_mask() {}
/**
* Overloaded assignment operator
*/
virtual domDepth_mask &operator=( const domDepth_mask &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domDepth_range;
typedef daeSmartRef<domDepth_range> domDepth_rangeRef;
typedef daeTArray<domDepth_rangeRef> domDepth_range_Array;
class domDepth_range : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::DEPTH_RANGE; }
static daeInt ID() { return 867; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat2 attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat2 of the value attribute.
*/
domFloat2 getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat2 atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domDepth_range(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domDepth_range() {}
/**
* Overloaded assignment operator
*/
virtual domDepth_range &operator=( const domDepth_range &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domFog_color;
typedef daeSmartRef<domFog_color> domFog_colorRef;
typedef daeTArray<domFog_colorRef> domFog_color_Array;
class domFog_color : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::FOG_COLOR; }
static daeInt ID() { return 868; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat4 attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat4 of the value attribute.
*/
domFloat4 getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat4 atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domFog_color(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domFog_color() {}
/**
* Overloaded assignment operator
*/
virtual domFog_color &operator=( const domFog_color &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domFog_density;
typedef daeSmartRef<domFog_density> domFog_densityRef;
typedef daeTArray<domFog_densityRef> domFog_density_Array;
class domFog_density : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::FOG_DENSITY; }
static daeInt ID() { return 869; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat of the value attribute.
*/
domFloat getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domFog_density(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domFog_density() {}
/**
* Overloaded assignment operator
*/
virtual domFog_density &operator=( const domFog_density &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domFog_mode;
typedef daeSmartRef<domFog_mode> domFog_modeRef;
typedef daeTArray<domFog_modeRef> domFog_mode_Array;
class domFog_mode : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::FOG_MODE; }
static daeInt ID() { return 870; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domGl_fog attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domGl_fog of the value attribute.
*/
domGl_fog getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domGl_fog atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domFog_mode(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domFog_mode() {}
/**
* Overloaded assignment operator
*/
virtual domFog_mode &operator=( const domFog_mode &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domFog_start;
typedef daeSmartRef<domFog_start> domFog_startRef;
typedef daeTArray<domFog_startRef> domFog_start_Array;
class domFog_start : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::FOG_START; }
static daeInt ID() { return 871; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat of the value attribute.
*/
domFloat getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domFog_start(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domFog_start() {}
/**
* Overloaded assignment operator
*/
virtual domFog_start &operator=( const domFog_start &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domFog_end;
typedef daeSmartRef<domFog_end> domFog_endRef;
typedef daeTArray<domFog_endRef> domFog_end_Array;
class domFog_end : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::FOG_END; }
static daeInt ID() { return 872; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat of the value attribute.
*/
domFloat getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domFog_end(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domFog_end() {}
/**
* Overloaded assignment operator
*/
virtual domFog_end &operator=( const domFog_end &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domFront_face;
typedef daeSmartRef<domFront_face> domFront_faceRef;
typedef daeTArray<domFront_faceRef> domFront_face_Array;
class domFront_face : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::FRONT_FACE; }
static daeInt ID() { return 873; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domGl_front_face attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domGl_front_face of the value attribute.
*/
domGl_front_face getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domGl_front_face atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domFront_face(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domFront_face() {}
/**
* Overloaded assignment operator
*/
virtual domFront_face &operator=( const domFront_face &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domLogic_op;
typedef daeSmartRef<domLogic_op> domLogic_opRef;
typedef daeTArray<domLogic_opRef> domLogic_op_Array;
class domLogic_op : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::LOGIC_OP; }
static daeInt ID() { return 874; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domGl_logic_op attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domGl_logic_op of the value attribute.
*/
domGl_logic_op getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domGl_logic_op atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domLogic_op(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domLogic_op() {}
/**
* Overloaded assignment operator
*/
virtual domLogic_op &operator=( const domLogic_op &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domLight_ambient;
typedef daeSmartRef<domLight_ambient> domLight_ambientRef;
typedef daeTArray<domLight_ambientRef> domLight_ambient_Array;
class domLight_ambient : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::LIGHT_AMBIENT; }
static daeInt ID() { return 875; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat4 attrValue;
xsNCName attrParam;
domGles_max_lights_index attrIndex;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat4 of the value attribute.
*/
domFloat4 getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat4 atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
/**
* Gets the index attribute.
* @return Returns a domGles_max_lights_index of the index attribute.
*/
domGles_max_lights_index getIndex() const { return attrIndex; }
/**
* Sets the index attribute.
* @param atIndex The new value for the index attribute.
*/
void setIndex( domGles_max_lights_index atIndex ) { attrIndex = atIndex; _validAttributeArray[2] = true; }
protected:
/**
* Constructor
*/
domLight_ambient(DAE& dae) : daeElement(dae), attrValue(), attrParam(), attrIndex() {}
/**
* Destructor
*/
virtual ~domLight_ambient() {}
/**
* Overloaded assignment operator
*/
virtual domLight_ambient &operator=( const domLight_ambient &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domLight_diffuse;
typedef daeSmartRef<domLight_diffuse> domLight_diffuseRef;
typedef daeTArray<domLight_diffuseRef> domLight_diffuse_Array;
class domLight_diffuse : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::LIGHT_DIFFUSE; }
static daeInt ID() { return 876; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat4 attrValue;
xsNCName attrParam;
domGles_max_lights_index attrIndex;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat4 of the value attribute.
*/
domFloat4 getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat4 atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
/**
* Gets the index attribute.
* @return Returns a domGles_max_lights_index of the index attribute.
*/
domGles_max_lights_index getIndex() const { return attrIndex; }
/**
* Sets the index attribute.
* @param atIndex The new value for the index attribute.
*/
void setIndex( domGles_max_lights_index atIndex ) { attrIndex = atIndex; _validAttributeArray[2] = true; }
protected:
/**
* Constructor
*/
domLight_diffuse(DAE& dae) : daeElement(dae), attrValue(), attrParam(), attrIndex() {}
/**
* Destructor
*/
virtual ~domLight_diffuse() {}
/**
* Overloaded assignment operator
*/
virtual domLight_diffuse &operator=( const domLight_diffuse &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domLight_specular;
typedef daeSmartRef<domLight_specular> domLight_specularRef;
typedef daeTArray<domLight_specularRef> domLight_specular_Array;
class domLight_specular : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::LIGHT_SPECULAR; }
static daeInt ID() { return 877; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat4 attrValue;
xsNCName attrParam;
domGles_max_lights_index attrIndex;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat4 of the value attribute.
*/
domFloat4 getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat4 atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
/**
* Gets the index attribute.
* @return Returns a domGles_max_lights_index of the index attribute.
*/
domGles_max_lights_index getIndex() const { return attrIndex; }
/**
* Sets the index attribute.
* @param atIndex The new value for the index attribute.
*/
void setIndex( domGles_max_lights_index atIndex ) { attrIndex = atIndex; _validAttributeArray[2] = true; }
protected:
/**
* Constructor
*/
domLight_specular(DAE& dae) : daeElement(dae), attrValue(), attrParam(), attrIndex() {}
/**
* Destructor
*/
virtual ~domLight_specular() {}
/**
* Overloaded assignment operator
*/
virtual domLight_specular &operator=( const domLight_specular &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domLight_position;
typedef daeSmartRef<domLight_position> domLight_positionRef;
typedef daeTArray<domLight_positionRef> domLight_position_Array;
class domLight_position : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::LIGHT_POSITION; }
static daeInt ID() { return 878; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat4 attrValue;
xsNCName attrParam;
domGles_max_lights_index attrIndex;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat4 of the value attribute.
*/
domFloat4 getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat4 atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
/**
* Gets the index attribute.
* @return Returns a domGles_max_lights_index of the index attribute.
*/
domGles_max_lights_index getIndex() const { return attrIndex; }
/**
* Sets the index attribute.
* @param atIndex The new value for the index attribute.
*/
void setIndex( domGles_max_lights_index atIndex ) { attrIndex = atIndex; _validAttributeArray[2] = true; }
protected:
/**
* Constructor
*/
domLight_position(DAE& dae) : daeElement(dae), attrValue(), attrParam(), attrIndex() {}
/**
* Destructor
*/
virtual ~domLight_position() {}
/**
* Overloaded assignment operator
*/
virtual domLight_position &operator=( const domLight_position &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domLight_constant_attenuation;
typedef daeSmartRef<domLight_constant_attenuation> domLight_constant_attenuationRef;
typedef daeTArray<domLight_constant_attenuationRef> domLight_constant_attenuation_Array;
class domLight_constant_attenuation : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::LIGHT_CONSTANT_ATTENUATION; }
static daeInt ID() { return 879; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat attrValue;
xsNCName attrParam;
domGles_max_lights_index attrIndex;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat of the value attribute.
*/
domFloat getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
/**
* Gets the index attribute.
* @return Returns a domGles_max_lights_index of the index attribute.
*/
domGles_max_lights_index getIndex() const { return attrIndex; }
/**
* Sets the index attribute.
* @param atIndex The new value for the index attribute.
*/
void setIndex( domGles_max_lights_index atIndex ) { attrIndex = atIndex; _validAttributeArray[2] = true; }
protected:
/**
* Constructor
*/
domLight_constant_attenuation(DAE& dae) : daeElement(dae), attrValue(), attrParam(), attrIndex() {}
/**
* Destructor
*/
virtual ~domLight_constant_attenuation() {}
/**
* Overloaded assignment operator
*/
virtual domLight_constant_attenuation &operator=( const domLight_constant_attenuation &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domLight_linear_attenuation;
typedef daeSmartRef<domLight_linear_attenuation> domLight_linear_attenuationRef;
typedef daeTArray<domLight_linear_attenuationRef> domLight_linear_attenuation_Array;
class domLight_linear_attenuation : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::LIGHT_LINEAR_ATTENUATION; }
static daeInt ID() { return 880; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat attrValue;
xsNCName attrParam;
domGles_max_lights_index attrIndex;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat of the value attribute.
*/
domFloat getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
/**
* Gets the index attribute.
* @return Returns a domGles_max_lights_index of the index attribute.
*/
domGles_max_lights_index getIndex() const { return attrIndex; }
/**
* Sets the index attribute.
* @param atIndex The new value for the index attribute.
*/
void setIndex( domGles_max_lights_index atIndex ) { attrIndex = atIndex; _validAttributeArray[2] = true; }
protected:
/**
* Constructor
*/
domLight_linear_attenuation(DAE& dae) : daeElement(dae), attrValue(), attrParam(), attrIndex() {}
/**
* Destructor
*/
virtual ~domLight_linear_attenuation() {}
/**
* Overloaded assignment operator
*/
virtual domLight_linear_attenuation &operator=( const domLight_linear_attenuation &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domLight_quadratic_attenuation;
typedef daeSmartRef<domLight_quadratic_attenuation> domLight_quadratic_attenuationRef;
typedef daeTArray<domLight_quadratic_attenuationRef> domLight_quadratic_attenuation_Array;
class domLight_quadratic_attenuation : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::LIGHT_QUADRATIC_ATTENUATION; }
static daeInt ID() { return 881; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat attrValue;
xsNCName attrParam;
domGles_max_lights_index attrIndex;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat of the value attribute.
*/
domFloat getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
/**
* Gets the index attribute.
* @return Returns a domGles_max_lights_index of the index attribute.
*/
domGles_max_lights_index getIndex() const { return attrIndex; }
/**
* Sets the index attribute.
* @param atIndex The new value for the index attribute.
*/
void setIndex( domGles_max_lights_index atIndex ) { attrIndex = atIndex; _validAttributeArray[2] = true; }
protected:
/**
* Constructor
*/
domLight_quadratic_attenuation(DAE& dae) : daeElement(dae), attrValue(), attrParam(), attrIndex() {}
/**
* Destructor
*/
virtual ~domLight_quadratic_attenuation() {}
/**
* Overloaded assignment operator
*/
virtual domLight_quadratic_attenuation &operator=( const domLight_quadratic_attenuation &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domLight_spot_cutoff;
typedef daeSmartRef<domLight_spot_cutoff> domLight_spot_cutoffRef;
typedef daeTArray<domLight_spot_cutoffRef> domLight_spot_cutoff_Array;
class domLight_spot_cutoff : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::LIGHT_SPOT_CUTOFF; }
static daeInt ID() { return 882; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat attrValue;
xsNCName attrParam;
domGles_max_lights_index attrIndex;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat of the value attribute.
*/
domFloat getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
/**
* Gets the index attribute.
* @return Returns a domGles_max_lights_index of the index attribute.
*/
domGles_max_lights_index getIndex() const { return attrIndex; }
/**
* Sets the index attribute.
* @param atIndex The new value for the index attribute.
*/
void setIndex( domGles_max_lights_index atIndex ) { attrIndex = atIndex; _validAttributeArray[2] = true; }
protected:
/**
* Constructor
*/
domLight_spot_cutoff(DAE& dae) : daeElement(dae), attrValue(), attrParam(), attrIndex() {}
/**
* Destructor
*/
virtual ~domLight_spot_cutoff() {}
/**
* Overloaded assignment operator
*/
virtual domLight_spot_cutoff &operator=( const domLight_spot_cutoff &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domLight_spot_direction;
typedef daeSmartRef<domLight_spot_direction> domLight_spot_directionRef;
typedef daeTArray<domLight_spot_directionRef> domLight_spot_direction_Array;
class domLight_spot_direction : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::LIGHT_SPOT_DIRECTION; }
static daeInt ID() { return 883; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat3 attrValue;
xsNCName attrParam;
domGles_max_lights_index attrIndex;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat3 of the value attribute.
*/
domFloat3 getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat3 atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
/**
* Gets the index attribute.
* @return Returns a domGles_max_lights_index of the index attribute.
*/
domGles_max_lights_index getIndex() const { return attrIndex; }
/**
* Sets the index attribute.
* @param atIndex The new value for the index attribute.
*/
void setIndex( domGles_max_lights_index atIndex ) { attrIndex = atIndex; _validAttributeArray[2] = true; }
protected:
/**
* Constructor
*/
domLight_spot_direction(DAE& dae) : daeElement(dae), attrValue(), attrParam(), attrIndex() {}
/**
* Destructor
*/
virtual ~domLight_spot_direction() {}
/**
* Overloaded assignment operator
*/
virtual domLight_spot_direction &operator=( const domLight_spot_direction &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domLight_spot_exponent;
typedef daeSmartRef<domLight_spot_exponent> domLight_spot_exponentRef;
typedef daeTArray<domLight_spot_exponentRef> domLight_spot_exponent_Array;
class domLight_spot_exponent : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::LIGHT_SPOT_EXPONENT; }
static daeInt ID() { return 884; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat attrValue;
xsNCName attrParam;
domGles_max_lights_index attrIndex;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat of the value attribute.
*/
domFloat getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
/**
* Gets the index attribute.
* @return Returns a domGles_max_lights_index of the index attribute.
*/
domGles_max_lights_index getIndex() const { return attrIndex; }
/**
* Sets the index attribute.
* @param atIndex The new value for the index attribute.
*/
void setIndex( domGles_max_lights_index atIndex ) { attrIndex = atIndex; _validAttributeArray[2] = true; }
protected:
/**
* Constructor
*/
domLight_spot_exponent(DAE& dae) : daeElement(dae), attrValue(), attrParam(), attrIndex() {}
/**
* Destructor
*/
virtual ~domLight_spot_exponent() {}
/**
* Overloaded assignment operator
*/
virtual domLight_spot_exponent &operator=( const domLight_spot_exponent &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domLight_model_ambient;
typedef daeSmartRef<domLight_model_ambient> domLight_model_ambientRef;
typedef daeTArray<domLight_model_ambientRef> domLight_model_ambient_Array;
class domLight_model_ambient : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::LIGHT_MODEL_AMBIENT; }
static daeInt ID() { return 885; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat4 attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat4 of the value attribute.
*/
domFloat4 getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat4 atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domLight_model_ambient(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domLight_model_ambient() {}
/**
* Overloaded assignment operator
*/
virtual domLight_model_ambient &operator=( const domLight_model_ambient &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domLine_width;
typedef daeSmartRef<domLine_width> domLine_widthRef;
typedef daeTArray<domLine_widthRef> domLine_width_Array;
class domLine_width : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::LINE_WIDTH; }
static daeInt ID() { return 886; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat of the value attribute.
*/
domFloat getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domLine_width(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domLine_width() {}
/**
* Overloaded assignment operator
*/
virtual domLine_width &operator=( const domLine_width &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domMaterial_ambient;
typedef daeSmartRef<domMaterial_ambient> domMaterial_ambientRef;
typedef daeTArray<domMaterial_ambientRef> domMaterial_ambient_Array;
class domMaterial_ambient : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::MATERIAL_AMBIENT; }
static daeInt ID() { return 887; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat4 attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat4 of the value attribute.
*/
domFloat4 getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat4 atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domMaterial_ambient(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domMaterial_ambient() {}
/**
* Overloaded assignment operator
*/
virtual domMaterial_ambient &operator=( const domMaterial_ambient &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domMaterial_diffuse;
typedef daeSmartRef<domMaterial_diffuse> domMaterial_diffuseRef;
typedef daeTArray<domMaterial_diffuseRef> domMaterial_diffuse_Array;
class domMaterial_diffuse : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::MATERIAL_DIFFUSE; }
static daeInt ID() { return 888; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat4 attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat4 of the value attribute.
*/
domFloat4 getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat4 atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domMaterial_diffuse(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domMaterial_diffuse() {}
/**
* Overloaded assignment operator
*/
virtual domMaterial_diffuse &operator=( const domMaterial_diffuse &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domMaterial_emission;
typedef daeSmartRef<domMaterial_emission> domMaterial_emissionRef;
typedef daeTArray<domMaterial_emissionRef> domMaterial_emission_Array;
class domMaterial_emission : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::MATERIAL_EMISSION; }
static daeInt ID() { return 889; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat4 attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat4 of the value attribute.
*/
domFloat4 getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat4 atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domMaterial_emission(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domMaterial_emission() {}
/**
* Overloaded assignment operator
*/
virtual domMaterial_emission &operator=( const domMaterial_emission &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domMaterial_shininess;
typedef daeSmartRef<domMaterial_shininess> domMaterial_shininessRef;
typedef daeTArray<domMaterial_shininessRef> domMaterial_shininess_Array;
class domMaterial_shininess : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::MATERIAL_SHININESS; }
static daeInt ID() { return 890; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat of the value attribute.
*/
domFloat getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domMaterial_shininess(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domMaterial_shininess() {}
/**
* Overloaded assignment operator
*/
virtual domMaterial_shininess &operator=( const domMaterial_shininess &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domMaterial_specular;
typedef daeSmartRef<domMaterial_specular> domMaterial_specularRef;
typedef daeTArray<domMaterial_specularRef> domMaterial_specular_Array;
class domMaterial_specular : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::MATERIAL_SPECULAR; }
static daeInt ID() { return 891; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat4 attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat4 of the value attribute.
*/
domFloat4 getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat4 atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domMaterial_specular(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domMaterial_specular() {}
/**
* Overloaded assignment operator
*/
virtual domMaterial_specular &operator=( const domMaterial_specular &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domModel_view_matrix;
typedef daeSmartRef<domModel_view_matrix> domModel_view_matrixRef;
typedef daeTArray<domModel_view_matrixRef> domModel_view_matrix_Array;
class domModel_view_matrix : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::MODEL_VIEW_MATRIX; }
static daeInt ID() { return 892; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat4x4 attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat4x4 of the value attribute.
*/
domFloat4x4 getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat4x4 atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domModel_view_matrix(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domModel_view_matrix() {}
/**
* Overloaded assignment operator
*/
virtual domModel_view_matrix &operator=( const domModel_view_matrix &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domPoint_distance_attenuation;
typedef daeSmartRef<domPoint_distance_attenuation> domPoint_distance_attenuationRef;
typedef daeTArray<domPoint_distance_attenuationRef> domPoint_distance_attenuation_Array;
class domPoint_distance_attenuation : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::POINT_DISTANCE_ATTENUATION; }
static daeInt ID() { return 893; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat3 attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat3 of the value attribute.
*/
domFloat3 getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat3 atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domPoint_distance_attenuation(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domPoint_distance_attenuation() {}
/**
* Overloaded assignment operator
*/
virtual domPoint_distance_attenuation &operator=( const domPoint_distance_attenuation &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domPoint_fade_threshold_size;
typedef daeSmartRef<domPoint_fade_threshold_size> domPoint_fade_threshold_sizeRef;
typedef daeTArray<domPoint_fade_threshold_sizeRef> domPoint_fade_threshold_size_Array;
class domPoint_fade_threshold_size : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::POINT_FADE_THRESHOLD_SIZE; }
static daeInt ID() { return 894; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat of the value attribute.
*/
domFloat getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domPoint_fade_threshold_size(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domPoint_fade_threshold_size() {}
/**
* Overloaded assignment operator
*/
virtual domPoint_fade_threshold_size &operator=( const domPoint_fade_threshold_size &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domPoint_size;
typedef daeSmartRef<domPoint_size> domPoint_sizeRef;
typedef daeTArray<domPoint_sizeRef> domPoint_size_Array;
class domPoint_size : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::POINT_SIZE; }
static daeInt ID() { return 895; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat of the value attribute.
*/
domFloat getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domPoint_size(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domPoint_size() {}
/**
* Overloaded assignment operator
*/
virtual domPoint_size &operator=( const domPoint_size &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domPoint_size_min;
typedef daeSmartRef<domPoint_size_min> domPoint_size_minRef;
typedef daeTArray<domPoint_size_minRef> domPoint_size_min_Array;
class domPoint_size_min : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::POINT_SIZE_MIN; }
static daeInt ID() { return 896; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat of the value attribute.
*/
domFloat getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domPoint_size_min(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domPoint_size_min() {}
/**
* Overloaded assignment operator
*/
virtual domPoint_size_min &operator=( const domPoint_size_min &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domPoint_size_max;
typedef daeSmartRef<domPoint_size_max> domPoint_size_maxRef;
typedef daeTArray<domPoint_size_maxRef> domPoint_size_max_Array;
class domPoint_size_max : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::POINT_SIZE_MAX; }
static daeInt ID() { return 897; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat of the value attribute.
*/
domFloat getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domPoint_size_max(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domPoint_size_max() {}
/**
* Overloaded assignment operator
*/
virtual domPoint_size_max &operator=( const domPoint_size_max &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domPolygon_offset;
typedef daeSmartRef<domPolygon_offset> domPolygon_offsetRef;
typedef daeTArray<domPolygon_offsetRef> domPolygon_offset_Array;
class domPolygon_offset : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::POLYGON_OFFSET; }
static daeInt ID() { return 898; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat2 attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat2 of the value attribute.
*/
domFloat2 getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat2 atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domPolygon_offset(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domPolygon_offset() {}
/**
* Overloaded assignment operator
*/
virtual domPolygon_offset &operator=( const domPolygon_offset &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domProjection_matrix;
typedef daeSmartRef<domProjection_matrix> domProjection_matrixRef;
typedef daeTArray<domProjection_matrixRef> domProjection_matrix_Array;
class domProjection_matrix : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::PROJECTION_MATRIX; }
static daeInt ID() { return 899; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domFloat4x4 attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domFloat4x4 of the value attribute.
*/
domFloat4x4 getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domFloat4x4 atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domProjection_matrix(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domProjection_matrix() {}
/**
* Overloaded assignment operator
*/
virtual domProjection_matrix &operator=( const domProjection_matrix &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domScissor;
typedef daeSmartRef<domScissor> domScissorRef;
typedef daeTArray<domScissorRef> domScissor_Array;
class domScissor : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::SCISSOR; }
static daeInt ID() { return 900; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domInt4 attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domInt4 of the value attribute.
*/
domInt4 getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domInt4 atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domScissor(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domScissor() {}
/**
* Overloaded assignment operator
*/
virtual domScissor &operator=( const domScissor &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domShade_model;
typedef daeSmartRef<domShade_model> domShade_modelRef;
typedef daeTArray<domShade_modelRef> domShade_model_Array;
class domShade_model : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::SHADE_MODEL; }
static daeInt ID() { return 901; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domGl_shade_model attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domGl_shade_model of the value attribute.
*/
domGl_shade_model getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domGl_shade_model atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domShade_model(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domShade_model() {}
/**
* Overloaded assignment operator
*/
virtual domShade_model &operator=( const domShade_model &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domStencil_func;
typedef daeSmartRef<domStencil_func> domStencil_funcRef;
typedef daeTArray<domStencil_funcRef> domStencil_func_Array;
class domStencil_func : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::STENCIL_FUNC; }
static daeInt ID() { return 902; }
virtual daeInt typeID() const { return ID(); }
public:
class domFunc;
typedef daeSmartRef<domFunc> domFuncRef;
typedef daeTArray<domFuncRef> domFunc_Array;
class domFunc : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::FUNC; }
static daeInt ID() { return 903; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domGl_func attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domGl_func of the value attribute.
*/
domGl_func getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domGl_func atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domFunc(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domFunc() {}
/**
* Overloaded assignment operator
*/
virtual domFunc &operator=( const domFunc &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domRef;
typedef daeSmartRef<domRef> domRefRef;
typedef daeTArray<domRefRef> domRef_Array;
class domRef : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::REF; }
static daeInt ID() { return 904; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsUnsignedByte attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsUnsignedByte of the value attribute.
*/
xsUnsignedByte getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsUnsignedByte atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domRef(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domRef() {}
/**
* Overloaded assignment operator
*/
virtual domRef &operator=( const domRef &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domMask;
typedef daeSmartRef<domMask> domMaskRef;
typedef daeTArray<domMaskRef> domMask_Array;
class domMask : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::MASK; }
static daeInt ID() { return 905; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsUnsignedByte attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsUnsignedByte of the value attribute.
*/
xsUnsignedByte getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsUnsignedByte atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domMask(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domMask() {}
/**
* Overloaded assignment operator
*/
virtual domMask &operator=( const domMask &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
protected: // Elements
domFuncRef elemFunc;
domRefRef elemRef;
domMaskRef elemMask;
public: //Accessors and Mutators
/**
* Gets the func element.
* @return a daeSmartRef to the func element.
*/
const domFuncRef getFunc() const { return elemFunc; }
/**
* Gets the ref element.
* @return a daeSmartRef to the ref element.
*/
const domRefRef getRef() const { return elemRef; }
/**
* Gets the mask element.
* @return a daeSmartRef to the mask element.
*/
const domMaskRef getMask() const { return elemMask; }
protected:
/**
* Constructor
*/
domStencil_func(DAE& dae) : daeElement(dae), elemFunc(), elemRef(), elemMask() {}
/**
* Destructor
*/
virtual ~domStencil_func() {}
/**
* Overloaded assignment operator
*/
virtual domStencil_func &operator=( const domStencil_func &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domStencil_mask;
typedef daeSmartRef<domStencil_mask> domStencil_maskRef;
typedef daeTArray<domStencil_maskRef> domStencil_mask_Array;
class domStencil_mask : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::STENCIL_MASK; }
static daeInt ID() { return 906; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domInt attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domInt of the value attribute.
*/
domInt getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domInt atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domStencil_mask(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domStencil_mask() {}
/**
* Overloaded assignment operator
*/
virtual domStencil_mask &operator=( const domStencil_mask &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domStencil_op;
typedef daeSmartRef<domStencil_op> domStencil_opRef;
typedef daeTArray<domStencil_opRef> domStencil_op_Array;
class domStencil_op : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::STENCIL_OP; }
static daeInt ID() { return 907; }
virtual daeInt typeID() const { return ID(); }
public:
class domFail;
typedef daeSmartRef<domFail> domFailRef;
typedef daeTArray<domFailRef> domFail_Array;
class domFail : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::FAIL; }
static daeInt ID() { return 908; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domGles_stencil_op attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domGles_stencil_op of the value attribute.
*/
domGles_stencil_op getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domGles_stencil_op atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domFail(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domFail() {}
/**
* Overloaded assignment operator
*/
virtual domFail &operator=( const domFail &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domZfail;
typedef daeSmartRef<domZfail> domZfailRef;
typedef daeTArray<domZfailRef> domZfail_Array;
class domZfail : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::ZFAIL; }
static daeInt ID() { return 909; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domGles_stencil_op attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domGles_stencil_op of the value attribute.
*/
domGles_stencil_op getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domGles_stencil_op atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domZfail(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domZfail() {}
/**
* Overloaded assignment operator
*/
virtual domZfail &operator=( const domZfail &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domZpass;
typedef daeSmartRef<domZpass> domZpassRef;
typedef daeTArray<domZpassRef> domZpass_Array;
class domZpass : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::ZPASS; }
static daeInt ID() { return 910; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
domGles_stencil_op attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a domGles_stencil_op of the value attribute.
*/
domGles_stencil_op getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( domGles_stencil_op atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domZpass(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domZpass() {}
/**
* Overloaded assignment operator
*/
virtual domZpass &operator=( const domZpass &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
protected: // Elements
domFailRef elemFail;
domZfailRef elemZfail;
domZpassRef elemZpass;
public: //Accessors and Mutators
/**
* Gets the fail element.
* @return a daeSmartRef to the fail element.
*/
const domFailRef getFail() const { return elemFail; }
/**
* Gets the zfail element.
* @return a daeSmartRef to the zfail element.
*/
const domZfailRef getZfail() const { return elemZfail; }
/**
* Gets the zpass element.
* @return a daeSmartRef to the zpass element.
*/
const domZpassRef getZpass() const { return elemZpass; }
protected:
/**
* Constructor
*/
domStencil_op(DAE& dae) : daeElement(dae), elemFail(), elemZfail(), elemZpass() {}
/**
* Destructor
*/
virtual ~domStencil_op() {}
/**
* Overloaded assignment operator
*/
virtual domStencil_op &operator=( const domStencil_op &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domTexture_pipeline;
typedef daeSmartRef<domTexture_pipeline> domTexture_pipelineRef;
typedef daeTArray<domTexture_pipelineRef> domTexture_pipeline_Array;
class domTexture_pipeline : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::TEXTURE_PIPELINE; }
static daeInt ID() { return 911; }
virtual daeInt typeID() const { return ID(); }
protected: // Element
domGles_texture_pipelineRef elemValue;
public: //Accessors and Mutators
/**
* Gets the value element.
* @return a daeSmartRef to the value element.
*/
const domGles_texture_pipelineRef getValue() const { return elemValue; }
protected:
/**
* Constructor
*/
domTexture_pipeline(DAE& dae) : daeElement(dae), elemValue() {}
/**
* Destructor
*/
virtual ~domTexture_pipeline() {}
/**
* Overloaded assignment operator
*/
virtual domTexture_pipeline &operator=( const domTexture_pipeline &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domAlpha_test_enable;
typedef daeSmartRef<domAlpha_test_enable> domAlpha_test_enableRef;
typedef daeTArray<domAlpha_test_enableRef> domAlpha_test_enable_Array;
class domAlpha_test_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::ALPHA_TEST_ENABLE; }
static daeInt ID() { return 912; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domAlpha_test_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domAlpha_test_enable() {}
/**
* Overloaded assignment operator
*/
virtual domAlpha_test_enable &operator=( const domAlpha_test_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domBlend_enable;
typedef daeSmartRef<domBlend_enable> domBlend_enableRef;
typedef daeTArray<domBlend_enableRef> domBlend_enable_Array;
class domBlend_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::BLEND_ENABLE; }
static daeInt ID() { return 913; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domBlend_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domBlend_enable() {}
/**
* Overloaded assignment operator
*/
virtual domBlend_enable &operator=( const domBlend_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domClip_plane_enable;
typedef daeSmartRef<domClip_plane_enable> domClip_plane_enableRef;
typedef daeTArray<domClip_plane_enableRef> domClip_plane_enable_Array;
class domClip_plane_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::CLIP_PLANE_ENABLE; }
static daeInt ID() { return 914; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
domGles_max_clip_planes_index attrIndex;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
/**
* Gets the index attribute.
* @return Returns a domGles_max_clip_planes_index of the index attribute.
*/
domGles_max_clip_planes_index getIndex() const { return attrIndex; }
/**
* Sets the index attribute.
* @param atIndex The new value for the index attribute.
*/
void setIndex( domGles_max_clip_planes_index atIndex ) { attrIndex = atIndex; _validAttributeArray[2] = true; }
protected:
/**
* Constructor
*/
domClip_plane_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam(), attrIndex() {}
/**
* Destructor
*/
virtual ~domClip_plane_enable() {}
/**
* Overloaded assignment operator
*/
virtual domClip_plane_enable &operator=( const domClip_plane_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domColor_logic_op_enable;
typedef daeSmartRef<domColor_logic_op_enable> domColor_logic_op_enableRef;
typedef daeTArray<domColor_logic_op_enableRef> domColor_logic_op_enable_Array;
class domColor_logic_op_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::COLOR_LOGIC_OP_ENABLE; }
static daeInt ID() { return 915; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domColor_logic_op_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domColor_logic_op_enable() {}
/**
* Overloaded assignment operator
*/
virtual domColor_logic_op_enable &operator=( const domColor_logic_op_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domColor_material_enable;
typedef daeSmartRef<domColor_material_enable> domColor_material_enableRef;
typedef daeTArray<domColor_material_enableRef> domColor_material_enable_Array;
class domColor_material_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::COLOR_MATERIAL_ENABLE; }
static daeInt ID() { return 916; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domColor_material_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domColor_material_enable() {}
/**
* Overloaded assignment operator
*/
virtual domColor_material_enable &operator=( const domColor_material_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domCull_face_enable;
typedef daeSmartRef<domCull_face_enable> domCull_face_enableRef;
typedef daeTArray<domCull_face_enableRef> domCull_face_enable_Array;
class domCull_face_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::CULL_FACE_ENABLE; }
static daeInt ID() { return 917; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domCull_face_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domCull_face_enable() {}
/**
* Overloaded assignment operator
*/
virtual domCull_face_enable &operator=( const domCull_face_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domDepth_test_enable;
typedef daeSmartRef<domDepth_test_enable> domDepth_test_enableRef;
typedef daeTArray<domDepth_test_enableRef> domDepth_test_enable_Array;
class domDepth_test_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::DEPTH_TEST_ENABLE; }
static daeInt ID() { return 918; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domDepth_test_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domDepth_test_enable() {}
/**
* Overloaded assignment operator
*/
virtual domDepth_test_enable &operator=( const domDepth_test_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domDither_enable;
typedef daeSmartRef<domDither_enable> domDither_enableRef;
typedef daeTArray<domDither_enableRef> domDither_enable_Array;
class domDither_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::DITHER_ENABLE; }
static daeInt ID() { return 919; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domDither_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domDither_enable() {}
/**
* Overloaded assignment operator
*/
virtual domDither_enable &operator=( const domDither_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domFog_enable;
typedef daeSmartRef<domFog_enable> domFog_enableRef;
typedef daeTArray<domFog_enableRef> domFog_enable_Array;
class domFog_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::FOG_ENABLE; }
static daeInt ID() { return 920; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domFog_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domFog_enable() {}
/**
* Overloaded assignment operator
*/
virtual domFog_enable &operator=( const domFog_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domLight_enable;
typedef daeSmartRef<domLight_enable> domLight_enableRef;
typedef daeTArray<domLight_enableRef> domLight_enable_Array;
class domLight_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::LIGHT_ENABLE; }
static daeInt ID() { return 921; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
domGles_max_lights_index attrIndex;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
/**
* Gets the index attribute.
* @return Returns a domGles_max_lights_index of the index attribute.
*/
domGles_max_lights_index getIndex() const { return attrIndex; }
/**
* Sets the index attribute.
* @param atIndex The new value for the index attribute.
*/
void setIndex( domGles_max_lights_index atIndex ) { attrIndex = atIndex; _validAttributeArray[2] = true; }
protected:
/**
* Constructor
*/
domLight_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam(), attrIndex() {}
/**
* Destructor
*/
virtual ~domLight_enable() {}
/**
* Overloaded assignment operator
*/
virtual domLight_enable &operator=( const domLight_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domLighting_enable;
typedef daeSmartRef<domLighting_enable> domLighting_enableRef;
typedef daeTArray<domLighting_enableRef> domLighting_enable_Array;
class domLighting_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::LIGHTING_ENABLE; }
static daeInt ID() { return 922; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domLighting_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domLighting_enable() {}
/**
* Overloaded assignment operator
*/
virtual domLighting_enable &operator=( const domLighting_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domLight_model_two_side_enable;
typedef daeSmartRef<domLight_model_two_side_enable> domLight_model_two_side_enableRef;
typedef daeTArray<domLight_model_two_side_enableRef> domLight_model_two_side_enable_Array;
class domLight_model_two_side_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::LIGHT_MODEL_TWO_SIDE_ENABLE; }
static daeInt ID() { return 923; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domLight_model_two_side_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domLight_model_two_side_enable() {}
/**
* Overloaded assignment operator
*/
virtual domLight_model_two_side_enable &operator=( const domLight_model_two_side_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domLine_smooth_enable;
typedef daeSmartRef<domLine_smooth_enable> domLine_smooth_enableRef;
typedef daeTArray<domLine_smooth_enableRef> domLine_smooth_enable_Array;
class domLine_smooth_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::LINE_SMOOTH_ENABLE; }
static daeInt ID() { return 924; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domLine_smooth_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domLine_smooth_enable() {}
/**
* Overloaded assignment operator
*/
virtual domLine_smooth_enable &operator=( const domLine_smooth_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domMultisample_enable;
typedef daeSmartRef<domMultisample_enable> domMultisample_enableRef;
typedef daeTArray<domMultisample_enableRef> domMultisample_enable_Array;
class domMultisample_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::MULTISAMPLE_ENABLE; }
static daeInt ID() { return 925; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domMultisample_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domMultisample_enable() {}
/**
* Overloaded assignment operator
*/
virtual domMultisample_enable &operator=( const domMultisample_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domNormalize_enable;
typedef daeSmartRef<domNormalize_enable> domNormalize_enableRef;
typedef daeTArray<domNormalize_enableRef> domNormalize_enable_Array;
class domNormalize_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::NORMALIZE_ENABLE; }
static daeInt ID() { return 926; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domNormalize_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domNormalize_enable() {}
/**
* Overloaded assignment operator
*/
virtual domNormalize_enable &operator=( const domNormalize_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domPoint_smooth_enable;
typedef daeSmartRef<domPoint_smooth_enable> domPoint_smooth_enableRef;
typedef daeTArray<domPoint_smooth_enableRef> domPoint_smooth_enable_Array;
class domPoint_smooth_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::POINT_SMOOTH_ENABLE; }
static daeInt ID() { return 927; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domPoint_smooth_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domPoint_smooth_enable() {}
/**
* Overloaded assignment operator
*/
virtual domPoint_smooth_enable &operator=( const domPoint_smooth_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domPolygon_offset_fill_enable;
typedef daeSmartRef<domPolygon_offset_fill_enable> domPolygon_offset_fill_enableRef;
typedef daeTArray<domPolygon_offset_fill_enableRef> domPolygon_offset_fill_enable_Array;
class domPolygon_offset_fill_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::POLYGON_OFFSET_FILL_ENABLE; }
static daeInt ID() { return 928; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domPolygon_offset_fill_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domPolygon_offset_fill_enable() {}
/**
* Overloaded assignment operator
*/
virtual domPolygon_offset_fill_enable &operator=( const domPolygon_offset_fill_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domRescale_normal_enable;
typedef daeSmartRef<domRescale_normal_enable> domRescale_normal_enableRef;
typedef daeTArray<domRescale_normal_enableRef> domRescale_normal_enable_Array;
class domRescale_normal_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::RESCALE_NORMAL_ENABLE; }
static daeInt ID() { return 929; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domRescale_normal_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domRescale_normal_enable() {}
/**
* Overloaded assignment operator
*/
virtual domRescale_normal_enable &operator=( const domRescale_normal_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domSample_alpha_to_coverage_enable;
typedef daeSmartRef<domSample_alpha_to_coverage_enable> domSample_alpha_to_coverage_enableRef;
typedef daeTArray<domSample_alpha_to_coverage_enableRef> domSample_alpha_to_coverage_enable_Array;
class domSample_alpha_to_coverage_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::SAMPLE_ALPHA_TO_COVERAGE_ENABLE; }
static daeInt ID() { return 930; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domSample_alpha_to_coverage_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domSample_alpha_to_coverage_enable() {}
/**
* Overloaded assignment operator
*/
virtual domSample_alpha_to_coverage_enable &operator=( const domSample_alpha_to_coverage_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domSample_alpha_to_one_enable;
typedef daeSmartRef<domSample_alpha_to_one_enable> domSample_alpha_to_one_enableRef;
typedef daeTArray<domSample_alpha_to_one_enableRef> domSample_alpha_to_one_enable_Array;
class domSample_alpha_to_one_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::SAMPLE_ALPHA_TO_ONE_ENABLE; }
static daeInt ID() { return 931; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domSample_alpha_to_one_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domSample_alpha_to_one_enable() {}
/**
* Overloaded assignment operator
*/
virtual domSample_alpha_to_one_enable &operator=( const domSample_alpha_to_one_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domSample_coverage_enable;
typedef daeSmartRef<domSample_coverage_enable> domSample_coverage_enableRef;
typedef daeTArray<domSample_coverage_enableRef> domSample_coverage_enable_Array;
class domSample_coverage_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::SAMPLE_COVERAGE_ENABLE; }
static daeInt ID() { return 932; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domSample_coverage_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domSample_coverage_enable() {}
/**
* Overloaded assignment operator
*/
virtual domSample_coverage_enable &operator=( const domSample_coverage_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domScissor_test_enable;
typedef daeSmartRef<domScissor_test_enable> domScissor_test_enableRef;
typedef daeTArray<domScissor_test_enableRef> domScissor_test_enable_Array;
class domScissor_test_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::SCISSOR_TEST_ENABLE; }
static daeInt ID() { return 933; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domScissor_test_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domScissor_test_enable() {}
/**
* Overloaded assignment operator
*/
virtual domScissor_test_enable &operator=( const domScissor_test_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
class domStencil_test_enable;
typedef daeSmartRef<domStencil_test_enable> domStencil_test_enableRef;
typedef daeTArray<domStencil_test_enableRef> domStencil_test_enable_Array;
class domStencil_test_enable : public daeElement
{
public:
virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::STENCIL_TEST_ENABLE; }
static daeInt ID() { return 934; }
virtual daeInt typeID() const { return ID(); }
protected: // Attributes
xsBoolean attrValue;
xsNCName attrParam;
public: //Accessors and Mutators
/**
* Gets the value attribute.
* @return Returns a xsBoolean of the value attribute.
*/
xsBoolean getValue() const { return attrValue; }
/**
* Sets the value attribute.
* @param atValue The new value for the value attribute.
*/
void setValue( xsBoolean atValue ) { attrValue = atValue; _validAttributeArray[0] = true; }
/**
* Gets the param attribute.
* @return Returns a xsNCName of the param attribute.
*/
xsNCName getParam() const { return attrParam; }
/**
* Sets the param attribute.
* @param atParam The new value for the param attribute.
*/
void setParam( xsNCName atParam ) { *(daeStringRef*)&attrParam = atParam; _validAttributeArray[1] = true; }
protected:
/**
* Constructor
*/
domStencil_test_enable(DAE& dae) : daeElement(dae), attrValue(), attrParam() {}
/**
* Destructor
*/
virtual ~domStencil_test_enable() {}
/**
* Overloaded assignment operator
*/
virtual domStencil_test_enable &operator=( const domStencil_test_enable &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
protected: // Elements
domAlpha_funcRef elemAlpha_func;
domBlend_funcRef elemBlend_func;
domClip_planeRef elemClip_plane;
domColor_maskRef elemColor_mask;
domCull_faceRef elemCull_face;
domDepth_funcRef elemDepth_func;
domDepth_maskRef elemDepth_mask;
domDepth_rangeRef elemDepth_range;
domFog_colorRef elemFog_color;
domFog_densityRef elemFog_density;
domFog_modeRef elemFog_mode;
domFog_startRef elemFog_start;
domFog_endRef elemFog_end;
domFront_faceRef elemFront_face;
domLogic_opRef elemLogic_op;
domLight_ambientRef elemLight_ambient;
domLight_diffuseRef elemLight_diffuse;
domLight_specularRef elemLight_specular;
domLight_positionRef elemLight_position;
domLight_constant_attenuationRef elemLight_constant_attenuation;
domLight_linear_attenuationRef elemLight_linear_attenuation;
domLight_quadratic_attenuationRef elemLight_quadratic_attenuation;
domLight_spot_cutoffRef elemLight_spot_cutoff;
domLight_spot_directionRef elemLight_spot_direction;
domLight_spot_exponentRef elemLight_spot_exponent;
domLight_model_ambientRef elemLight_model_ambient;
domLine_widthRef elemLine_width;
domMaterial_ambientRef elemMaterial_ambient;
domMaterial_diffuseRef elemMaterial_diffuse;
domMaterial_emissionRef elemMaterial_emission;
domMaterial_shininessRef elemMaterial_shininess;
domMaterial_specularRef elemMaterial_specular;
domModel_view_matrixRef elemModel_view_matrix;
domPoint_distance_attenuationRef elemPoint_distance_attenuation;
domPoint_fade_threshold_sizeRef elemPoint_fade_threshold_size;
domPoint_sizeRef elemPoint_size;
domPoint_size_minRef elemPoint_size_min;
domPoint_size_maxRef elemPoint_size_max;
domPolygon_offsetRef elemPolygon_offset;
domProjection_matrixRef elemProjection_matrix;
domScissorRef elemScissor;
domShade_modelRef elemShade_model;
domStencil_funcRef elemStencil_func;
domStencil_maskRef elemStencil_mask;
domStencil_opRef elemStencil_op;
domTexture_pipelineRef elemTexture_pipeline;
domAlpha_test_enableRef elemAlpha_test_enable;
domBlend_enableRef elemBlend_enable;
domClip_plane_enableRef elemClip_plane_enable;
domColor_logic_op_enableRef elemColor_logic_op_enable;
domColor_material_enableRef elemColor_material_enable;
domCull_face_enableRef elemCull_face_enable;
domDepth_test_enableRef elemDepth_test_enable;
domDither_enableRef elemDither_enable;
domFog_enableRef elemFog_enable;
domLight_enableRef elemLight_enable;
domLighting_enableRef elemLighting_enable;
domLight_model_two_side_enableRef elemLight_model_two_side_enable;
domLine_smooth_enableRef elemLine_smooth_enable;
domMultisample_enableRef elemMultisample_enable;
domNormalize_enableRef elemNormalize_enable;
domPoint_smooth_enableRef elemPoint_smooth_enable;
domPolygon_offset_fill_enableRef elemPolygon_offset_fill_enable;
domRescale_normal_enableRef elemRescale_normal_enable;
domSample_alpha_to_coverage_enableRef elemSample_alpha_to_coverage_enable;
domSample_alpha_to_one_enableRef elemSample_alpha_to_one_enable;
domSample_coverage_enableRef elemSample_coverage_enable;
domScissor_test_enableRef elemScissor_test_enable;
domStencil_test_enableRef elemStencil_test_enable;
/**
* 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;
/**
* Used to store information needed for some content model objects.
*/
daeTArray< daeCharArray * > _CMData;
public: //Accessors and Mutators
/**
* Gets the alpha_func element.
* @return a daeSmartRef to the alpha_func element.
*/
const domAlpha_funcRef getAlpha_func() const { return elemAlpha_func; }
/**
* Gets the blend_func element.
* @return a daeSmartRef to the blend_func element.
*/
const domBlend_funcRef getBlend_func() const { return elemBlend_func; }
/**
* Gets the clip_plane element.
* @return a daeSmartRef to the clip_plane element.
*/
const domClip_planeRef getClip_plane() const { return elemClip_plane; }
/**
* Gets the color_mask element.
* @return a daeSmartRef to the color_mask element.
*/
const domColor_maskRef getColor_mask() const { return elemColor_mask; }
/**
* Gets the cull_face element.
* @return a daeSmartRef to the cull_face element.
*/
const domCull_faceRef getCull_face() const { return elemCull_face; }
/**
* Gets the depth_func element.
* @return a daeSmartRef to the depth_func element.
*/
const domDepth_funcRef getDepth_func() const { return elemDepth_func; }
/**
* Gets the depth_mask element.
* @return a daeSmartRef to the depth_mask element.
*/
const domDepth_maskRef getDepth_mask() const { return elemDepth_mask; }
/**
* Gets the depth_range element.
* @return a daeSmartRef to the depth_range element.
*/
const domDepth_rangeRef getDepth_range() const { return elemDepth_range; }
/**
* Gets the fog_color element.
* @return a daeSmartRef to the fog_color element.
*/
const domFog_colorRef getFog_color() const { return elemFog_color; }
/**
* Gets the fog_density element.
* @return a daeSmartRef to the fog_density element.
*/
const domFog_densityRef getFog_density() const { return elemFog_density; }
/**
* Gets the fog_mode element.
* @return a daeSmartRef to the fog_mode element.
*/
const domFog_modeRef getFog_mode() const { return elemFog_mode; }
/**
* Gets the fog_start element.
* @return a daeSmartRef to the fog_start element.
*/
const domFog_startRef getFog_start() const { return elemFog_start; }
/**
* Gets the fog_end element.
* @return a daeSmartRef to the fog_end element.
*/
const domFog_endRef getFog_end() const { return elemFog_end; }
/**
* Gets the front_face element.
* @return a daeSmartRef to the front_face element.
*/
const domFront_faceRef getFront_face() const { return elemFront_face; }
/**
* Gets the logic_op element.
* @return a daeSmartRef to the logic_op element.
*/
const domLogic_opRef getLogic_op() const { return elemLogic_op; }
/**
* Gets the light_ambient element.
* @return a daeSmartRef to the light_ambient element.
*/
const domLight_ambientRef getLight_ambient() const { return elemLight_ambient; }
/**
* Gets the light_diffuse element.
* @return a daeSmartRef to the light_diffuse element.
*/
const domLight_diffuseRef getLight_diffuse() const { return elemLight_diffuse; }
/**
* Gets the light_specular element.
* @return a daeSmartRef to the light_specular element.
*/
const domLight_specularRef getLight_specular() const { return elemLight_specular; }
/**
* Gets the light_position element.
* @return a daeSmartRef to the light_position element.
*/
const domLight_positionRef getLight_position() const { return elemLight_position; }
/**
* Gets the light_constant_attenuation element.
* @return a daeSmartRef to the light_constant_attenuation element.
*/
const domLight_constant_attenuationRef getLight_constant_attenuation() const { return elemLight_constant_attenuation; }
/**
* Gets the light_linear_attenuation element.
* @return a daeSmartRef to the light_linear_attenuation element.
*/
const domLight_linear_attenuationRef getLight_linear_attenuation() const { return elemLight_linear_attenuation; }
/**
* Gets the light_quadratic_attenuation element.
* @return a daeSmartRef to the light_quadratic_attenuation element.
*/
const domLight_quadratic_attenuationRef getLight_quadratic_attenuation() const { return elemLight_quadratic_attenuation; }
/**
* Gets the light_spot_cutoff element.
* @return a daeSmartRef to the light_spot_cutoff element.
*/
const domLight_spot_cutoffRef getLight_spot_cutoff() const { return elemLight_spot_cutoff; }
/**
* Gets the light_spot_direction element.
* @return a daeSmartRef to the light_spot_direction element.
*/
const domLight_spot_directionRef getLight_spot_direction() const { return elemLight_spot_direction; }
/**
* Gets the light_spot_exponent element.
* @return a daeSmartRef to the light_spot_exponent element.
*/
const domLight_spot_exponentRef getLight_spot_exponent() const { return elemLight_spot_exponent; }
/**
* Gets the light_model_ambient element.
* @return a daeSmartRef to the light_model_ambient element.
*/
const domLight_model_ambientRef getLight_model_ambient() const { return elemLight_model_ambient; }
/**
* Gets the line_width element.
* @return a daeSmartRef to the line_width element.
*/
const domLine_widthRef getLine_width() const { return elemLine_width; }
/**
* Gets the material_ambient element.
* @return a daeSmartRef to the material_ambient element.
*/
const domMaterial_ambientRef getMaterial_ambient() const { return elemMaterial_ambient; }
/**
* Gets the material_diffuse element.
* @return a daeSmartRef to the material_diffuse element.
*/
const domMaterial_diffuseRef getMaterial_diffuse() const { return elemMaterial_diffuse; }
/**
* Gets the material_emission element.
* @return a daeSmartRef to the material_emission element.
*/
const domMaterial_emissionRef getMaterial_emission() const { return elemMaterial_emission; }
/**
* Gets the material_shininess element.
* @return a daeSmartRef to the material_shininess element.
*/
const domMaterial_shininessRef getMaterial_shininess() const { return elemMaterial_shininess; }
/**
* Gets the material_specular element.
* @return a daeSmartRef to the material_specular element.
*/
const domMaterial_specularRef getMaterial_specular() const { return elemMaterial_specular; }
/**
* Gets the model_view_matrix element.
* @return a daeSmartRef to the model_view_matrix element.
*/
const domModel_view_matrixRef getModel_view_matrix() const { return elemModel_view_matrix; }
/**
* Gets the point_distance_attenuation element.
* @return a daeSmartRef to the point_distance_attenuation element.
*/
const domPoint_distance_attenuationRef getPoint_distance_attenuation() const { return elemPoint_distance_attenuation; }
/**
* Gets the point_fade_threshold_size element.
* @return a daeSmartRef to the point_fade_threshold_size element.
*/
const domPoint_fade_threshold_sizeRef getPoint_fade_threshold_size() const { return elemPoint_fade_threshold_size; }
/**
* Gets the point_size element.
* @return a daeSmartRef to the point_size element.
*/
const domPoint_sizeRef getPoint_size() const { return elemPoint_size; }
/**
* Gets the point_size_min element.
* @return a daeSmartRef to the point_size_min element.
*/
const domPoint_size_minRef getPoint_size_min() const { return elemPoint_size_min; }
/**
* Gets the point_size_max element.
* @return a daeSmartRef to the point_size_max element.
*/
const domPoint_size_maxRef getPoint_size_max() const { return elemPoint_size_max; }
/**
* Gets the polygon_offset element.
* @return a daeSmartRef to the polygon_offset element.
*/
const domPolygon_offsetRef getPolygon_offset() const { return elemPolygon_offset; }
/**
* Gets the projection_matrix element.
* @return a daeSmartRef to the projection_matrix element.
*/
const domProjection_matrixRef getProjection_matrix() const { return elemProjection_matrix; }
/**
* Gets the scissor element.
* @return a daeSmartRef to the scissor element.
*/
const domScissorRef getScissor() const { return elemScissor; }
/**
* Gets the shade_model element.
* @return a daeSmartRef to the shade_model element.
*/
const domShade_modelRef getShade_model() const { return elemShade_model; }
/**
* Gets the stencil_func element.
* @return a daeSmartRef to the stencil_func element.
*/
const domStencil_funcRef getStencil_func() const { return elemStencil_func; }
/**
* Gets the stencil_mask element.
* @return a daeSmartRef to the stencil_mask element.
*/
const domStencil_maskRef getStencil_mask() const { return elemStencil_mask; }
/**
* Gets the stencil_op element.
* @return a daeSmartRef to the stencil_op element.
*/
const domStencil_opRef getStencil_op() const { return elemStencil_op; }
/**
* Gets the texture_pipeline element.
* @return a daeSmartRef to the texture_pipeline element.
*/
const domTexture_pipelineRef getTexture_pipeline() const { return elemTexture_pipeline; }
/**
* Gets the alpha_test_enable element.
* @return a daeSmartRef to the alpha_test_enable element.
*/
const domAlpha_test_enableRef getAlpha_test_enable() const { return elemAlpha_test_enable; }
/**
* Gets the blend_enable element.
* @return a daeSmartRef to the blend_enable element.
*/
const domBlend_enableRef getBlend_enable() const { return elemBlend_enable; }
/**
* Gets the clip_plane_enable element.
* @return a daeSmartRef to the clip_plane_enable element.
*/
const domClip_plane_enableRef getClip_plane_enable() const { return elemClip_plane_enable; }
/**
* Gets the color_logic_op_enable element.
* @return a daeSmartRef to the color_logic_op_enable element.
*/
const domColor_logic_op_enableRef getColor_logic_op_enable() const { return elemColor_logic_op_enable; }
/**
* Gets the color_material_enable element.
* @return a daeSmartRef to the color_material_enable element.
*/
const domColor_material_enableRef getColor_material_enable() const { return elemColor_material_enable; }
/**
* Gets the cull_face_enable element.
* @return a daeSmartRef to the cull_face_enable element.
*/
const domCull_face_enableRef getCull_face_enable() const { return elemCull_face_enable; }
/**
* Gets the depth_test_enable element.
* @return a daeSmartRef to the depth_test_enable element.
*/
const domDepth_test_enableRef getDepth_test_enable() const { return elemDepth_test_enable; }
/**
* Gets the dither_enable element.
* @return a daeSmartRef to the dither_enable element.
*/
const domDither_enableRef getDither_enable() const { return elemDither_enable; }
/**
* Gets the fog_enable element.
* @return a daeSmartRef to the fog_enable element.
*/
const domFog_enableRef getFog_enable() const { return elemFog_enable; }
/**
* Gets the light_enable element.
* @return a daeSmartRef to the light_enable element.
*/
const domLight_enableRef getLight_enable() const { return elemLight_enable; }
/**
* Gets the lighting_enable element.
* @return a daeSmartRef to the lighting_enable element.
*/
const domLighting_enableRef getLighting_enable() const { return elemLighting_enable; }
/**
* Gets the light_model_two_side_enable element.
* @return a daeSmartRef to the light_model_two_side_enable element.
*/
const domLight_model_two_side_enableRef getLight_model_two_side_enable() const { return elemLight_model_two_side_enable; }
/**
* Gets the line_smooth_enable element.
* @return a daeSmartRef to the line_smooth_enable element.
*/
const domLine_smooth_enableRef getLine_smooth_enable() const { return elemLine_smooth_enable; }
/**
* Gets the multisample_enable element.
* @return a daeSmartRef to the multisample_enable element.
*/
const domMultisample_enableRef getMultisample_enable() const { return elemMultisample_enable; }
/**
* Gets the normalize_enable element.
* @return a daeSmartRef to the normalize_enable element.
*/
const domNormalize_enableRef getNormalize_enable() const { return elemNormalize_enable; }
/**
* Gets the point_smooth_enable element.
* @return a daeSmartRef to the point_smooth_enable element.
*/
const domPoint_smooth_enableRef getPoint_smooth_enable() const { return elemPoint_smooth_enable; }
/**
* Gets the polygon_offset_fill_enable element.
* @return a daeSmartRef to the polygon_offset_fill_enable element.
*/
const domPolygon_offset_fill_enableRef getPolygon_offset_fill_enable() const { return elemPolygon_offset_fill_enable; }
/**
* Gets the rescale_normal_enable element.
* @return a daeSmartRef to the rescale_normal_enable element.
*/
const domRescale_normal_enableRef getRescale_normal_enable() const { return elemRescale_normal_enable; }
/**
* Gets the sample_alpha_to_coverage_enable element.
* @return a daeSmartRef to the sample_alpha_to_coverage_enable element.
*/
const domSample_alpha_to_coverage_enableRef getSample_alpha_to_coverage_enable() const { return elemSample_alpha_to_coverage_enable; }
/**
* Gets the sample_alpha_to_one_enable element.
* @return a daeSmartRef to the sample_alpha_to_one_enable element.
*/
const domSample_alpha_to_one_enableRef getSample_alpha_to_one_enable() const { return elemSample_alpha_to_one_enable; }
/**
* Gets the sample_coverage_enable element.
* @return a daeSmartRef to the sample_coverage_enable element.
*/
const domSample_coverage_enableRef getSample_coverage_enable() const { return elemSample_coverage_enable; }
/**
* Gets the scissor_test_enable element.
* @return a daeSmartRef to the scissor_test_enable element.
*/
const domScissor_test_enableRef getScissor_test_enable() const { return elemScissor_test_enable; }
/**
* Gets the stencil_test_enable element.
* @return a daeSmartRef to the stencil_test_enable element.
*/
const domStencil_test_enableRef getStencil_test_enable() const { return elemStencil_test_enable; }
/**
* Gets the _contents array.
* @return Returns a reference to the _contents element array.
*/
daeElementRefArray &getContents() { return _contents; }
/**
* Gets the _contents array.
* @return Returns a constant reference to the _contents element array.
*/
const daeElementRefArray &getContents() const { return _contents; }
protected:
/**
* Constructor
*/
domGles_pipeline_settings(DAE& dae) : daeElement(dae), elemAlpha_func(), elemBlend_func(), elemClip_plane(), elemColor_mask(), elemCull_face(), elemDepth_func(), elemDepth_mask(), elemDepth_range(), elemFog_color(), elemFog_density(), elemFog_mode(), elemFog_start(), elemFog_end(), elemFront_face(), elemLogic_op(), elemLight_ambient(), elemLight_diffuse(), elemLight_specular(), elemLight_position(), elemLight_constant_attenuation(), elemLight_linear_attenuation(), elemLight_quadratic_attenuation(), elemLight_spot_cutoff(), elemLight_spot_direction(), elemLight_spot_exponent(), elemLight_model_ambient(), elemLine_width(), elemMaterial_ambient(), elemMaterial_diffuse(), elemMaterial_emission(), elemMaterial_shininess(), elemMaterial_specular(), elemModel_view_matrix(), elemPoint_distance_attenuation(), elemPoint_fade_threshold_size(), elemPoint_size(), elemPoint_size_min(), elemPoint_size_max(), elemPolygon_offset(), elemProjection_matrix(), elemScissor(), elemShade_model(), elemStencil_func(), elemStencil_mask(), elemStencil_op(), elemTexture_pipeline(), elemAlpha_test_enable(), elemBlend_enable(), elemClip_plane_enable(), elemColor_logic_op_enable(), elemColor_material_enable(), elemCull_face_enable(), elemDepth_test_enable(), elemDither_enable(), elemFog_enable(), elemLight_enable(), elemLighting_enable(), elemLight_model_two_side_enable(), elemLine_smooth_enable(), elemMultisample_enable(), elemNormalize_enable(), elemPoint_smooth_enable(), elemPolygon_offset_fill_enable(), elemRescale_normal_enable(), elemSample_alpha_to_coverage_enable(), elemSample_alpha_to_one_enable(), elemSample_coverage_enable(), elemScissor_test_enable(), elemStencil_test_enable() {}
/**
* Destructor
*/
virtual ~domGles_pipeline_settings() { daeElement::deleteCMDataArray(_CMData); }
/**
* Overloaded assignment operator
*/
virtual domGles_pipeline_settings &operator=( const domGles_pipeline_settings &cpy ) { (void)cpy; return *this; }
public: // STATIC METHODS
/**
* Creates an instance of this class and returns a daeElementRef referencing it.
* @return a daeElementRef referencing an instance of this object.
*/
static DLLSPEC daeElementRef create(DAE& dae);
/**
* Creates a daeMetaElement object that describes this element in the meta object reflection framework.
* If a daeMetaElement already exists it will return that instead of creating a new one.
* @return A daeMetaElement describing this COLLADA element.
*/
static DLLSPEC daeMetaElement* registerElement(DAE& dae);
};
} // ColladaDOM150
#endif