1 /* 2 * Copyright 2006 Sony Computer Entertainment Inc. 3 * 4 * Licensed under the MIT Open Source License, for details please see license.txt or the website 5 * http://www.opensource.org/licenses/mit-license.php 6 * 7 */ 8 9 #include <dae.h> 10 #include <dae/daeDom.h> 11 #include <dom/domCg_connect_param.h> 12 #include <dae/daeMetaCMPolicy.h> 13 #include <dae/daeMetaSequence.h> 14 #include <dae/daeMetaChoice.h> 15 #include <dae/daeMetaGroup.h> 16 #include <dae/daeMetaAny.h> 17 #include <dae/daeMetaElementAttribute.h> 18 19 daeElementRef 20 domCg_connect_param::create(DAE& dae) 21 { 22 domCg_connect_paramRef ref = new domCg_connect_param(dae); 23 return ref; 24 } 25 26 27 daeMetaElement * 28 domCg_connect_param::registerElement(DAE& dae) 29 { 30 daeMetaElement* meta = dae.getMeta(ID()); 31 if ( meta != NULL ) return meta; 32 33 meta = new daeMetaElement(dae); 34 dae.setMeta(ID(), *meta); 35 meta->setName( "cg_connect_param" ); 36 meta->registerClass(domCg_connect_param::create); 37 38 39 // Add attribute: ref 40 { 41 daeMetaAttribute *ma = new daeMetaAttribute; 42 ma->setName( "ref" ); 43 ma->setType( dae.getAtomicTypes().get("Cg_identifier")); 44 ma->setOffset( daeOffsetOf( domCg_connect_param , attrRef )); 45 ma->setContainer( meta ); 46 ma->setIsRequired( true ); 47 48 meta->appendAttribute(ma); 49 } 50 51 meta->setElementSize(sizeof(domCg_connect_param)); 52 meta->validate(); 53 54 return meta; 55 } 56 57