Bump for 3.6-28
[LibreOffice.git] / chart2 / source / controller / main / _serviceregistration_controller.cxx
blob895f579730087928dcdb7e1b1f4bbb9d083ac4b1
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #include "ChartController.hxx"
30 #include "ChartFrameloader.hxx"
31 #include "dlg_CreationWizard_UNO.hxx"
32 #include "dlg_ChartType_UNO.hxx"
33 #include "ChartDocumentWrapper.hxx"
34 #include "AccessibleChartView.hxx"
35 #include "ElementSelector.hxx"
36 #include "ShapeToolbarController.hxx"
37 #include <cppuhelper/implementationentry.hxx>
39 static struct ::cppu::ImplementationEntry g_entries_chart2_controller[] =
42 ::chart::ChartController::create
43 , ::chart::ChartController::getImplementationName_Static
44 , ::chart::ChartController::getSupportedServiceNames_Static
45 , ::cppu::createSingleComponentFactory
46 , 0
47 , 0
50 ::chart::ChartFrameLoader::create
51 , ::chart::ChartFrameLoader::getImplementationName_Static
52 , ::chart::ChartFrameLoader::getSupportedServiceNames_Static
53 , ::cppu::createSingleComponentFactory
54 , 0
55 , 0
58 ::chart::CreationWizardUnoDlg::create
59 , ::chart::CreationWizardUnoDlg::getImplementationName_Static
60 , ::chart::CreationWizardUnoDlg::getSupportedServiceNames_Static
61 , ::cppu::createSingleComponentFactory
62 , 0
63 , 0
66 ::chart::ChartTypeUnoDlg::Create
67 , ::chart::ChartTypeUnoDlg::getImplementationName_Static
68 , ::chart::ChartTypeUnoDlg::getSupportedServiceNames_Static
69 , ::cppu::createSingleComponentFactory
70 , 0
71 , 0
74 ::chart::wrapper::ChartDocumentWrapper::create
75 , ::chart::wrapper::ChartDocumentWrapper::getImplementationName_Static
76 , ::chart::wrapper::ChartDocumentWrapper::getSupportedServiceNames_Static
77 , ::cppu::createSingleComponentFactory
78 , 0
79 , 0
82 ::chart::ElementSelectorToolbarController::create
83 , ::chart::ElementSelectorToolbarController::getImplementationName_Static
84 , ::chart::ElementSelectorToolbarController::getSupportedServiceNames_Static
85 , ::cppu::createSingleComponentFactory
86 , 0
87 , 0
90 ::chart::ShapeToolbarController::create
91 , ::chart::ShapeToolbarController::getImplementationName_Static
92 , ::chart::ShapeToolbarController::getSupportedServiceNames_Static
93 , ::cppu::createSingleComponentFactory
94 , 0
95 , 0
97 ,{ 0, 0, 0, 0, 0, 0 }
100 // component exports
101 extern "C"
103 SAL_DLLPUBLIC_EXPORT void * SAL_CALL chartcontroller_component_getFactory(
104 const sal_Char * pImplName, void * pServiceManager, void * pRegistryKey )
106 return ::cppu::component_getFactoryHelper(
107 pImplName, pServiceManager, pRegistryKey , g_entries_chart2_controller );
110 //=========================================================================
112 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */