1*b1cdbd2cSJim Jagielski /**************************************************************
2*b1cdbd2cSJim Jagielski  *
3*b1cdbd2cSJim Jagielski  * Licensed to the Apache Software Foundation (ASF) under one
4*b1cdbd2cSJim Jagielski  * or more contributor license agreements.  See the NOTICE file
5*b1cdbd2cSJim Jagielski  * distributed with this work for additional information
6*b1cdbd2cSJim Jagielski  * regarding copyright ownership.  The ASF licenses this file
7*b1cdbd2cSJim Jagielski  * to you under the Apache License, Version 2.0 (the
8*b1cdbd2cSJim Jagielski  * "License"); you may not use this file except in compliance
9*b1cdbd2cSJim Jagielski  * with the License.  You may obtain a copy of the License at
10*b1cdbd2cSJim Jagielski  *
11*b1cdbd2cSJim Jagielski  *   http://www.apache.org/licenses/LICENSE-2.0
12*b1cdbd2cSJim Jagielski  *
13*b1cdbd2cSJim Jagielski  * Unless required by applicable law or agreed to in writing,
14*b1cdbd2cSJim Jagielski  * software distributed under the License is distributed on an
15*b1cdbd2cSJim Jagielski  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*b1cdbd2cSJim Jagielski  * KIND, either express or implied.  See the License for the
17*b1cdbd2cSJim Jagielski  * specific language governing permissions and limitations
18*b1cdbd2cSJim Jagielski  * under the License.
19*b1cdbd2cSJim Jagielski  *
20*b1cdbd2cSJim Jagielski  *************************************************************/
21*b1cdbd2cSJim Jagielski 
22*b1cdbd2cSJim Jagielski 
23*b1cdbd2cSJim Jagielski 
24*b1cdbd2cSJim Jagielski // MARKER(update_precomp.py): autogen include statement, do not remove
25*b1cdbd2cSJim Jagielski #include "precompiled_xmlscript.hxx"
26*b1cdbd2cSJim Jagielski 
27*b1cdbd2cSJim Jagielski #ifndef _CPPUHELPER_IMPLEMENTATIONENTRY_HXX_
28*b1cdbd2cSJim Jagielski #include <cppuhelper/implementationentry.hxx>
29*b1cdbd2cSJim Jagielski #endif
30*b1cdbd2cSJim Jagielski 
31*b1cdbd2cSJim Jagielski using namespace ::rtl;
32*b1cdbd2cSJim Jagielski using namespace ::com::sun::star::uno;
33*b1cdbd2cSJim Jagielski 
34*b1cdbd2cSJim Jagielski 
35*b1cdbd2cSJim Jagielski // =============================================================================
36*b1cdbd2cSJim Jagielski 
37*b1cdbd2cSJim Jagielski namespace xmlscript
38*b1cdbd2cSJim Jagielski {
39*b1cdbd2cSJim Jagielski     Sequence< OUString > SAL_CALL getSupportedServiceNames_DocumentHandlerImpl();
40*b1cdbd2cSJim Jagielski     OUString SAL_CALL getImplementationName_DocumentHandlerImpl();
41*b1cdbd2cSJim Jagielski     Reference< XInterface > SAL_CALL create_DocumentHandlerImpl(
42*b1cdbd2cSJim Jagielski         Reference< XComponentContext > const & xContext )
43*b1cdbd2cSJim Jagielski             SAL_THROW( (Exception) );
44*b1cdbd2cSJim Jagielski 
45*b1cdbd2cSJim Jagielski     Sequence< OUString > SAL_CALL getSupportedServiceNames_XMLBasicExporter();
46*b1cdbd2cSJim Jagielski     OUString SAL_CALL getImplementationName_XMLBasicExporter();
47*b1cdbd2cSJim Jagielski     Reference< XInterface > SAL_CALL create_XMLBasicExporter(
48*b1cdbd2cSJim Jagielski         Reference< XComponentContext > const & xContext )
49*b1cdbd2cSJim Jagielski             SAL_THROW( (Exception) );
50*b1cdbd2cSJim Jagielski 
51*b1cdbd2cSJim Jagielski     Sequence< OUString > SAL_CALL getSupportedServiceNames_XMLOasisBasicExporter();
52*b1cdbd2cSJim Jagielski     OUString SAL_CALL getImplementationName_XMLOasisBasicExporter();
53*b1cdbd2cSJim Jagielski     Reference< XInterface > SAL_CALL create_XMLOasisBasicExporter(
54*b1cdbd2cSJim Jagielski         Reference< XComponentContext > const & xContext )
55*b1cdbd2cSJim Jagielski             SAL_THROW( (Exception) );
56*b1cdbd2cSJim Jagielski 
57*b1cdbd2cSJim Jagielski     Sequence< OUString > SAL_CALL getSupportedServiceNames_XMLBasicImporter();
58*b1cdbd2cSJim Jagielski     OUString SAL_CALL getImplementationName_XMLBasicImporter();
59*b1cdbd2cSJim Jagielski     Reference< XInterface > SAL_CALL create_XMLBasicImporter(
60*b1cdbd2cSJim Jagielski         Reference< XComponentContext > const & xContext )
61*b1cdbd2cSJim Jagielski             SAL_THROW( (Exception) );
62*b1cdbd2cSJim Jagielski 
63*b1cdbd2cSJim Jagielski     Sequence< OUString > SAL_CALL getSupportedServiceNames_XMLOasisBasicImporter();
64*b1cdbd2cSJim Jagielski     OUString SAL_CALL getImplementationName_XMLOasisBasicImporter();
65*b1cdbd2cSJim Jagielski     Reference< XInterface > SAL_CALL create_XMLOasisBasicImporter(
66*b1cdbd2cSJim Jagielski         Reference< XComponentContext > const & xContext )
67*b1cdbd2cSJim Jagielski             SAL_THROW( (Exception) );
68*b1cdbd2cSJim Jagielski 
69*b1cdbd2cSJim Jagielski     // -----------------------------------------------------------------------------
70*b1cdbd2cSJim Jagielski 
71*b1cdbd2cSJim Jagielski     static struct ::cppu::ImplementationEntry s_entries [] =
72*b1cdbd2cSJim Jagielski     {
73*b1cdbd2cSJim Jagielski         {
74*b1cdbd2cSJim Jagielski             create_DocumentHandlerImpl, getImplementationName_DocumentHandlerImpl,
75*b1cdbd2cSJim Jagielski             getSupportedServiceNames_DocumentHandlerImpl, ::cppu::createSingleComponentFactory,
76*b1cdbd2cSJim Jagielski             0, 0
77*b1cdbd2cSJim Jagielski         },
78*b1cdbd2cSJim Jagielski         {
79*b1cdbd2cSJim Jagielski             create_XMLBasicExporter, getImplementationName_XMLBasicExporter,
80*b1cdbd2cSJim Jagielski             getSupportedServiceNames_XMLBasicExporter, ::cppu::createSingleComponentFactory,
81*b1cdbd2cSJim Jagielski             0, 0
82*b1cdbd2cSJim Jagielski         },
83*b1cdbd2cSJim Jagielski         {
84*b1cdbd2cSJim Jagielski             create_XMLOasisBasicExporter, getImplementationName_XMLOasisBasicExporter,
85*b1cdbd2cSJim Jagielski             getSupportedServiceNames_XMLOasisBasicExporter, ::cppu::createSingleComponentFactory,
86*b1cdbd2cSJim Jagielski             0, 0
87*b1cdbd2cSJim Jagielski         },
88*b1cdbd2cSJim Jagielski         {
89*b1cdbd2cSJim Jagielski             create_XMLBasicImporter, getImplementationName_XMLBasicImporter,
90*b1cdbd2cSJim Jagielski             getSupportedServiceNames_XMLBasicImporter, ::cppu::createSingleComponentFactory,
91*b1cdbd2cSJim Jagielski             0, 0
92*b1cdbd2cSJim Jagielski         },
93*b1cdbd2cSJim Jagielski         {
94*b1cdbd2cSJim Jagielski             create_XMLOasisBasicImporter, getImplementationName_XMLOasisBasicImporter,
95*b1cdbd2cSJim Jagielski             getSupportedServiceNames_XMLOasisBasicImporter, ::cppu::createSingleComponentFactory,
96*b1cdbd2cSJim Jagielski             0, 0
97*b1cdbd2cSJim Jagielski         },
98*b1cdbd2cSJim Jagielski         { 0, 0, 0, 0, 0, 0 }
99*b1cdbd2cSJim Jagielski     };
100*b1cdbd2cSJim Jagielski }
101*b1cdbd2cSJim Jagielski 
102*b1cdbd2cSJim Jagielski // =============================================================================
103*b1cdbd2cSJim Jagielski 
104*b1cdbd2cSJim Jagielski extern "C"
105*b1cdbd2cSJim Jagielski {
component_getImplementationEnvironment(const sal_Char ** ppEnvTypeName,uno_Environment **)106*b1cdbd2cSJim Jagielski     void SAL_CALL component_getImplementationEnvironment(
107*b1cdbd2cSJim Jagielski         const sal_Char ** ppEnvTypeName, uno_Environment ** )
108*b1cdbd2cSJim Jagielski     {
109*b1cdbd2cSJim Jagielski         *ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME;
110*b1cdbd2cSJim Jagielski     }
111*b1cdbd2cSJim Jagielski 
112*b1cdbd2cSJim Jagielski     // -----------------------------------------------------------------------------
113*b1cdbd2cSJim Jagielski 
component_getFactory(const sal_Char * pImplName,void * pServiceManager,void * pRegistryKey)114*b1cdbd2cSJim Jagielski     void * SAL_CALL component_getFactory(
115*b1cdbd2cSJim Jagielski         const sal_Char * pImplName, void * pServiceManager, void * pRegistryKey )
116*b1cdbd2cSJim Jagielski     {
117*b1cdbd2cSJim Jagielski         return ::cppu::component_getFactoryHelper(
118*b1cdbd2cSJim Jagielski             pImplName, pServiceManager, pRegistryKey, ::xmlscript::s_entries );
119*b1cdbd2cSJim Jagielski     }
120*b1cdbd2cSJim Jagielski }
121