/* * 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 <dom/domFx_annotate_common.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> daeElementRef domFx_annotate_common::create(DAE& dae) { domFx_annotate_commonRef ref = new domFx_annotate_common(dae); return ref; } daeMetaElement * domFx_annotate_common::registerElement(DAE& dae) { daeMetaElement* meta = dae.getMeta(ID()); if ( meta != NULL ) return meta; meta = new daeMetaElement(dae); dae.setMeta(ID(), *meta); meta->setName( "fx_annotate_common" ); meta->registerClass(domFx_annotate_common::create); daeMetaCMPolicy *cm = NULL; daeMetaElementAttribute *mea = NULL; cm = new daeMetaSequence( meta, cm, 0, 1, 1 ); mea = new daeMetaElementAttribute( meta, cm, 0, 1, 1 ); mea->setName( "fx_annotate_type_common" ); mea->setOffset( daeOffsetOf(domFx_annotate_common,elemFx_annotate_type_common) ); mea->setElementType( domFx_annotate_type_common::registerElement(dae) ); cm->appendChild( new daeMetaGroup( mea, meta, cm, 0, 1, 1 ) ); cm->setMaxOrdinal( 0 ); meta->setCMRoot( cm ); // Add attribute: name { daeMetaAttribute *ma = new daeMetaAttribute; ma->setName( "name" ); ma->setType( dae.getAtomicTypes().get("xsNCName")); ma->setOffset( daeOffsetOf( domFx_annotate_common , attrName )); ma->setContainer( meta ); ma->setIsRequired( true ); meta->appendAttribute(ma); } meta->setElementSize(sizeof(domFx_annotate_common)); meta->validate(); return meta; }