GPU-Calc: remove Alloc_Host_Ptr for clmem of NAN vector
[LibreOffice.git] / animations / source / animcore / factreg.hxx
bloba6ede62668dc4f43c5c83e46f850554ef1a05b6a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef _INCLUDED_ANIMCORE_FACTREG_HXX_
21 #define _INCLUDED_ANIMCORE_FACTREG_HXX_
23 namespace animcore {
25 #define DECL_NODE_FACTORY(N)\
26 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);\
27 extern OUString getImplementationName_##N();\
28 extern ::com::sun::star::uno::Sequence< OUString> getSupportedServiceNames_##N(void)
30 DECL_NODE_FACTORY( PAR );
31 DECL_NODE_FACTORY( SEQ );
32 DECL_NODE_FACTORY( ITERATE );
33 DECL_NODE_FACTORY( ANIMATE );
34 DECL_NODE_FACTORY( SET );
35 DECL_NODE_FACTORY( ANIMATECOLOR );
36 DECL_NODE_FACTORY( ANIMATEMOTION );
37 DECL_NODE_FACTORY( ANIMATETRANSFORM );
38 DECL_NODE_FACTORY( TRANSITIONFILTER );
39 DECL_NODE_FACTORY( AUDIO );
40 DECL_NODE_FACTORY( COMMAND );
41 DECL_NODE_FACTORY( TargetPropertiesCreator );
45 #endif
47 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */