summaryrefslogtreecommitdiffstats
path: root/1.4.0/dom/src/1.4/dom/domCommon_float_or_param_type.cpp
diff options
context:
space:
mode:
Diffstat (limited to '1.4.0/dom/src/1.4/dom/domCommon_float_or_param_type.cpp')
-rw-r--r--1.4.0/dom/src/1.4/dom/domCommon_float_or_param_type.cpp155
1 files changed, 155 insertions, 0 deletions
diff --git a/1.4.0/dom/src/1.4/dom/domCommon_float_or_param_type.cpp b/1.4.0/dom/src/1.4/dom/domCommon_float_or_param_type.cpp
new file mode 100644
index 0000000..171a413
--- /dev/null
+++ b/1.4.0/dom/src/1.4/dom/domCommon_float_or_param_type.cpp
@@ -0,0 +1,155 @@
+/*
+* Copyright 2006 Sony Computer Entertainment Inc.
+*
+* Licensed under the MIT Open Source License, for details please see license.txt or the website
+* http://www.opensource.org/licenses/mit-license.php
+*
+*/
+
+#include <dae.h>
+#include <dae/daeDom.h>
+#include <1.4/dom/domCommon_float_or_param_type.h>
+#include <dae/daeMetaCMPolicy.h>
+#include <dae/daeMetaSequence.h>
+#include <dae/daeMetaChoice.h>
+#include <dae/daeMetaGroup.h>
+#include <dae/daeMetaAny.h>
+#include <dae/daeMetaElementAttribute.h>
+
+
+namespace ColladaDOM141 {
+daeElementRef
+domCommon_float_or_param_type::create(DAE& dae)
+{
+ domCommon_float_or_param_typeRef ref = new domCommon_float_or_param_type(dae);
+ return ref;
+}
+
+
+daeMetaElement *
+domCommon_float_or_param_type::registerElement(DAE& dae)
+{
+ daeMetaElement* meta = dae.getMeta(ID());
+ if ( meta != NULL ) return meta;
+
+ meta = new daeMetaElement(dae);
+ dae.setMeta(ID(), *meta);
+ meta->setName( "common_float_or_param_type" );
+ meta->registerClass(domCommon_float_or_param_type::create);
+
+ daeMetaCMPolicy *cm = NULL;
+ daeMetaElementAttribute *mea = NULL;
+ cm = new daeMetaChoice( meta, cm, 0, 0, 1, 1 );
+
+ mea = new daeMetaElementAttribute( meta, cm, 0, 1, 1 );
+ mea->setName( "float" );
+ mea->setOffset( daeOffsetOf(domCommon_float_or_param_type,elemFloat) );
+ mea->setElementType( domCommon_float_or_param_type::domFloat::registerElement(dae) );
+ cm->appendChild( mea );
+
+ mea = new daeMetaElementAttribute( meta, cm, 0, 1, 1 );
+ mea->setName( "param" );
+ mea->setOffset( daeOffsetOf(domCommon_float_or_param_type,elemParam) );
+ mea->setElementType( domCommon_float_or_param_type::domParam::registerElement(dae) );
+ cm->appendChild( mea );
+
+ cm->setMaxOrdinal( 0 );
+ meta->setCMRoot( cm );
+ // Ordered list of sub-elements
+ meta->addContents(daeOffsetOf(domCommon_float_or_param_type,_contents));
+ meta->addContentsOrder(daeOffsetOf(domCommon_float_or_param_type,_contentsOrder));
+
+ meta->addCMDataArray(daeOffsetOf(domCommon_float_or_param_type,_CMData), 1);
+ meta->setElementSize(sizeof(domCommon_float_or_param_type));
+ meta->validate();
+
+ return meta;
+}
+
+daeElementRef
+domCommon_float_or_param_type::domFloat::create(DAE& dae)
+{
+ domCommon_float_or_param_type::domFloatRef ref = new domCommon_float_or_param_type::domFloat(dae);
+ return ref;
+}
+
+
+daeMetaElement *
+domCommon_float_or_param_type::domFloat::registerElement(DAE& dae)
+{
+ daeMetaElement* meta = dae.getMeta(ID());
+ if ( meta != NULL ) return meta;
+
+ meta = new daeMetaElement(dae);
+ dae.setMeta(ID(), *meta);
+ meta->setName( "float" );
+ meta->registerClass(domCommon_float_or_param_type::domFloat::create);
+
+ meta->setIsInnerClass( true );
+ // Add attribute: _value
+ {
+ daeMetaAttribute *ma = new daeMetaAttribute;
+ ma->setName( "_value" );
+ ma->setType( dae.getAtomicTypes().get("Float"));
+ ma->setOffset( daeOffsetOf( domCommon_float_or_param_type::domFloat , _value ));
+ ma->setContainer( meta );
+ meta->appendAttribute(ma);
+ }
+
+ // Add attribute: sid
+ {
+ daeMetaAttribute *ma = new daeMetaAttribute;
+ ma->setName( "sid" );
+ ma->setType( dae.getAtomicTypes().get("xsNCName"));
+ ma->setOffset( daeOffsetOf( domCommon_float_or_param_type::domFloat , attrSid ));
+ ma->setContainer( meta );
+
+ meta->appendAttribute(ma);
+ }
+
+ meta->setElementSize(sizeof(domCommon_float_or_param_type::domFloat));
+ meta->validate();
+
+ return meta;
+}
+
+daeElementRef
+domCommon_float_or_param_type::domParam::create(DAE& dae)
+{
+ domCommon_float_or_param_type::domParamRef ref = new domCommon_float_or_param_type::domParam(dae);
+ return ref;
+}
+
+
+daeMetaElement *
+domCommon_float_or_param_type::domParam::registerElement(DAE& dae)
+{
+ daeMetaElement* meta = dae.getMeta(ID());
+ if ( meta != NULL ) return meta;
+
+ meta = new daeMetaElement(dae);
+ dae.setMeta(ID(), *meta);
+ meta->setName( "param" );
+ meta->registerClass(domCommon_float_or_param_type::domParam::create);
+
+ meta->setIsInnerClass( true );
+
+ // Add attribute: ref
+ {
+ daeMetaAttribute *ma = new daeMetaAttribute;
+ ma->setName( "ref" );
+ ma->setType( dae.getAtomicTypes().get("xsNCName"));
+ ma->setOffset( daeOffsetOf( domCommon_float_or_param_type::domParam , attrRef ));
+ ma->setContainer( meta );
+ ma->setIsRequired( true );
+
+ meta->appendAttribute(ma);
+ }
+
+ meta->setElementSize(sizeof(domCommon_float_or_param_type::domParam));
+ meta->validate();
+
+ return meta;
+}
+
+} // ColladaDOM141