/* * Copyright 2006 Sony Computer Entertainment Inc. * * Licensed under the SCEA Shared Source License, Version 1.0 (the "License"); you may not use this * file except in compliance with the License. You may obtain a copy of the License at: * http://research.scea.com/scea_shared_source_license.html * * Unless required by applicable law or agreed to in writing, software distributed under the License * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or * implied. See the License for the specific language governing permissions and limitations under the * License. */ #include #include #include #include #include #include #include #include daeElementRef domFx_include_common::create(daeInt bytes) { domFx_include_commonRef ref = new(bytes) domFx_include_common; ref->attrUrl.setContainer( (domFx_include_common*)ref ); return ref; } daeMetaElement * domFx_include_common::registerElement() { if ( _Meta != NULL ) return _Meta; _Meta = new daeMetaElement; _Meta->setName( "fx_include_common" ); _Meta->registerConstructor(domFx_include_common::create); // Add attribute: sid { daeMetaAttribute *ma = new daeMetaAttribute; ma->setName( "sid" ); ma->setType( daeAtomicType::get("xsNCName")); ma->setOffset( daeOffsetOf( domFx_include_common , attrSid )); ma->setContainer( _Meta ); ma->setIsRequired( true ); _Meta->appendAttribute(ma); } // Add attribute: url { daeMetaAttribute *ma = new daeMetaAttribute; ma->setName( "url" ); ma->setType( daeAtomicType::get("xsAnyURI")); ma->setOffset( daeOffsetOf( domFx_include_common , attrUrl )); ma->setContainer( _Meta ); ma->setIsRequired( true ); _Meta->appendAttribute(ma); } _Meta->setElementSize(sizeof(domFx_include_common)); _Meta->validate(); return _Meta; } daeMetaElement * domFx_include_common::_Meta = NULL;