Bump for 3.6-28
[LibreOffice.git] / chart2 / source / tools / _serviceregistration_tools.cxx
blob306d443dd4be55926268bcad2e915f7e9ffb52f1
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 <cppuhelper/implementationentry.hxx>
30 #include "LabeledDataSequence.hxx"
31 #include "CachedDataSequence.hxx"
32 #include "DataSource.hxx"
33 #include "ConfigColorScheme.hxx"
34 #include "Scaling.hxx"
35 #include "ErrorBar.hxx"
36 #include "RegressionCurveModel.hxx"
37 #include "RegressionEquation.hxx"
38 #include "InternalDataProvider.hxx"
39 #include "charttoolsdllapi.hxx"
41 static struct ::cppu::ImplementationEntry g_entries_chart2_tools[] =
44 ::chart::LabeledDataSequence::create
45 , ::chart::LabeledDataSequence::getImplementationName_Static
46 , ::chart::LabeledDataSequence::getSupportedServiceNames_Static
47 , ::cppu::createSingleComponentFactory
48 , 0
49 , 0
52 ::chart::CachedDataSequence::create
53 , ::chart::CachedDataSequence::getImplementationName_Static
54 , ::chart::CachedDataSequence::getSupportedServiceNames_Static
55 , ::cppu::createSingleComponentFactory
56 , 0
57 , 0
60 ::chart::DataSource::create
61 , ::chart::DataSource::getImplementationName_Static
62 , ::chart::DataSource::getSupportedServiceNames_Static
63 , ::cppu::createSingleComponentFactory
64 , 0
65 , 0
68 ::chart::ConfigColorScheme::create
69 , ::chart::ConfigColorScheme::getImplementationName_Static
70 , ::chart::ConfigColorScheme::getSupportedServiceNames_Static
71 , ::cppu::createSingleComponentFactory
72 , 0
73 , 0
77 ::chart::LogarithmicScaling::create
78 , ::chart::LogarithmicScaling::getImplementationName_Static
79 , ::chart::LogarithmicScaling::getSupportedServiceNames_Static
80 , ::cppu::createSingleComponentFactory
81 , 0
82 , 0
85 ::chart::ExponentialScaling::create
86 , ::chart::ExponentialScaling::getImplementationName_Static
87 , ::chart::ExponentialScaling::getSupportedServiceNames_Static
88 , ::cppu::createSingleComponentFactory
89 , 0
90 , 0
93 ::chart::LinearScaling::create
94 , ::chart::LinearScaling::getImplementationName_Static
95 , ::chart::LinearScaling::getSupportedServiceNames_Static
96 , ::cppu::createSingleComponentFactory
97 , 0
98 , 0
101 ::chart::PowerScaling::create
102 , ::chart::PowerScaling::getImplementationName_Static
103 , ::chart::PowerScaling::getSupportedServiceNames_Static
104 , ::cppu::createSingleComponentFactory
109 ::chart::ErrorBar::create
110 , ::chart::ErrorBar::getImplementationName_Static
111 , ::chart::ErrorBar::getSupportedServiceNames_Static
112 , ::cppu::createSingleComponentFactory
117 ::chart::MeanValueRegressionCurve::create
118 , ::chart::MeanValueRegressionCurve::getImplementationName_Static
119 , ::chart::MeanValueRegressionCurve::getSupportedServiceNames_Static
120 , ::cppu::createSingleComponentFactory
125 ::chart::LinearRegressionCurve::create
126 , ::chart::LinearRegressionCurve::getImplementationName_Static
127 , ::chart::LinearRegressionCurve::getSupportedServiceNames_Static
128 , ::cppu::createSingleComponentFactory
133 ::chart::LogarithmicRegressionCurve::create
134 , ::chart::LogarithmicRegressionCurve::getImplementationName_Static
135 , ::chart::LogarithmicRegressionCurve::getSupportedServiceNames_Static
136 , ::cppu::createSingleComponentFactory
141 ::chart::ExponentialRegressionCurve::create
142 , ::chart::ExponentialRegressionCurve::getImplementationName_Static
143 , ::chart::ExponentialRegressionCurve::getSupportedServiceNames_Static
144 , ::cppu::createSingleComponentFactory
149 ::chart::PotentialRegressionCurve::create
150 , ::chart::PotentialRegressionCurve::getImplementationName_Static
151 , ::chart::PotentialRegressionCurve::getSupportedServiceNames_Static
152 , ::cppu::createSingleComponentFactory
157 ::chart::RegressionEquation::create
158 , ::chart::RegressionEquation::getImplementationName_Static
159 , ::chart::RegressionEquation::getSupportedServiceNames_Static
160 , ::cppu::createSingleComponentFactory
165 ::chart::InternalDataProvider::create
166 , ::chart::InternalDataProvider::getImplementationName_Static
167 , ::chart::InternalDataProvider::getSupportedServiceNames_Static
168 , ::cppu::createSingleComponentFactory
172 ,{ 0, 0, 0, 0, 0, 0 }
175 // component exports
176 extern "C"
178 SAL_DLLPUBLIC_EXPORT void * SAL_CALL charttools_component_getFactory(
179 const sal_Char * pImplName, void * pServiceManager, void * pRegistryKey )
181 return ::cppu::component_getFactoryHelper(
182 pImplName, pServiceManager, pRegistryKey , g_entries_chart2_tools );
185 //=========================================================================
187 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */