1*c62a8de3SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*c62a8de3SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*c62a8de3SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*c62a8de3SAndrew Rist * distributed with this work for additional information 6*c62a8de3SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*c62a8de3SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*c62a8de3SAndrew Rist * "License"); you may not use this file except in compliance 9*c62a8de3SAndrew Rist * with the License. You may obtain a copy of the License at 10*c62a8de3SAndrew Rist * 11*c62a8de3SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*c62a8de3SAndrew Rist * 13*c62a8de3SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*c62a8de3SAndrew Rist * software distributed under the License is distributed on an 15*c62a8de3SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*c62a8de3SAndrew Rist * KIND, either express or implied. See the License for the 17*c62a8de3SAndrew Rist * specific language governing permissions and limitations 18*c62a8de3SAndrew Rist * under the License. 19*c62a8de3SAndrew Rist * 20*c62a8de3SAndrew Rist *************************************************************/ 21*c62a8de3SAndrew Rist 22*c62a8de3SAndrew Rist 23cdf0e10cSrcweir #include <rtl/unload.h> 24cdf0e10cSrcweir 25cdf0e10cSrcweir namespace animcore { 26cdf0e10cSrcweir 27cdf0e10cSrcweir extern rtl_StandardModuleCount g_moduleCount; 28cdf0e10cSrcweir 29cdf0e10cSrcweir #define DECL_NODE_FACTORY(N)\ 30cdf0e10cSrcweir extern ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL createInstance_##N( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > & rSMgr ) throw (::com::sun::star::uno::Exception);\ 31cdf0e10cSrcweir extern ::rtl::OUString getImplementationName_##N();\ 32cdf0e10cSrcweir extern ::com::sun::star::uno::Sequence< ::rtl::OUString> getSupportedServiceNames_##N(void) 33cdf0e10cSrcweir 34cdf0e10cSrcweir DECL_NODE_FACTORY( PAR ); 35cdf0e10cSrcweir DECL_NODE_FACTORY( SEQ ); 36cdf0e10cSrcweir DECL_NODE_FACTORY( ITERATE ); 37cdf0e10cSrcweir DECL_NODE_FACTORY( ANIMATE ); 38cdf0e10cSrcweir DECL_NODE_FACTORY( SET ); 39cdf0e10cSrcweir DECL_NODE_FACTORY( ANIMATECOLOR ); 40cdf0e10cSrcweir DECL_NODE_FACTORY( ANIMATEMOTION ); 41cdf0e10cSrcweir DECL_NODE_FACTORY( ANIMATETRANSFORM ); 42cdf0e10cSrcweir DECL_NODE_FACTORY( TRANSITIONFILTER ); 43cdf0e10cSrcweir DECL_NODE_FACTORY( AUDIO ); 44cdf0e10cSrcweir DECL_NODE_FACTORY( COMMAND ); 45cdf0e10cSrcweir DECL_NODE_FACTORY( TargetPropertiesCreator ); 46cdf0e10cSrcweir 47cdf0e10cSrcweir } 48