LCOV - code coverage report
Current view: top level - libreoffice/chart2/source/tools - _serviceregistration_tools.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 2 2 100.0 %
Date: 2012-12-27 Functions: 1 1 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       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/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      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 .
      18             :  */
      19             : 
      20             : #include <cppuhelper/implementationentry.hxx>
      21             : #include "LabeledDataSequence.hxx"
      22             : #include "CachedDataSequence.hxx"
      23             : #include "DataSource.hxx"
      24             : #include "ConfigColorScheme.hxx"
      25             : #include "Scaling.hxx"
      26             : #include "ErrorBar.hxx"
      27             : #include "RegressionCurveModel.hxx"
      28             : #include "RegressionEquation.hxx"
      29             : #include "InternalDataProvider.hxx"
      30             : #include "charttoolsdllapi.hxx"
      31             : 
      32             : static struct ::cppu::ImplementationEntry g_entries_chart2_tools[] =
      33             : {
      34             :     {
      35             :           ::chart::LabeledDataSequence::create
      36             :         , ::chart::LabeledDataSequence::getImplementationName_Static
      37             :         , ::chart::LabeledDataSequence::getSupportedServiceNames_Static
      38             :         , ::cppu::createSingleComponentFactory
      39             :         , 0
      40             :         , 0
      41             :     }
      42             :    ,{
      43             :           ::chart::CachedDataSequence::create
      44             :         , ::chart::CachedDataSequence::getImplementationName_Static
      45             :         , ::chart::CachedDataSequence::getSupportedServiceNames_Static
      46             :         , ::cppu::createSingleComponentFactory
      47             :         , 0
      48             :         , 0
      49             :     }
      50             :    ,{
      51             :           ::chart::DataSource::create
      52             :         , ::chart::DataSource::getImplementationName_Static
      53             :         , ::chart::DataSource::getSupportedServiceNames_Static
      54             :         , ::cppu::createSingleComponentFactory
      55             :         , 0
      56             :         , 0
      57             :     }
      58             :    ,{
      59             :           ::chart::ConfigColorScheme::create
      60             :         , ::chart::ConfigColorScheme::getImplementationName_Static
      61             :         , ::chart::ConfigColorScheme::getSupportedServiceNames_Static
      62             :         , ::cppu::createSingleComponentFactory
      63             :         , 0
      64             :         , 0
      65             :     }
      66             : 
      67             :     ,{
      68             :           ::chart::LogarithmicScaling::create
      69             :         , ::chart::LogarithmicScaling::getImplementationName_Static
      70             :         , ::chart::LogarithmicScaling::getSupportedServiceNames_Static
      71             :         , ::cppu::createSingleComponentFactory
      72             :         , 0
      73             :         , 0
      74             :     }
      75             :    ,{
      76             :           ::chart::ExponentialScaling::create
      77             :         , ::chart::ExponentialScaling::getImplementationName_Static
      78             :         , ::chart::ExponentialScaling::getSupportedServiceNames_Static
      79             :         , ::cppu::createSingleComponentFactory
      80             :         , 0
      81             :         , 0
      82             :     }
      83             :    ,{
      84             :           ::chart::LinearScaling::create
      85             :         , ::chart::LinearScaling::getImplementationName_Static
      86             :         , ::chart::LinearScaling::getSupportedServiceNames_Static
      87             :         , ::cppu::createSingleComponentFactory
      88             :         , 0
      89             :         , 0
      90             :     }
      91             :    ,{
      92             :           ::chart::PowerScaling::create
      93             :         , ::chart::PowerScaling::getImplementationName_Static
      94             :         , ::chart::PowerScaling::getSupportedServiceNames_Static
      95             :         , ::cppu::createSingleComponentFactory
      96             :         , 0
      97             :         , 0
      98             :     }
      99             :    ,{
     100             :           ::chart::ErrorBar::create
     101             :         , ::chart::ErrorBar::getImplementationName_Static
     102             :         , ::chart::ErrorBar::getSupportedServiceNames_Static
     103             :         , ::cppu::createSingleComponentFactory
     104             :         , 0
     105             :         , 0
     106             :     }
     107             :    ,{
     108             :           ::chart::MeanValueRegressionCurve::create
     109             :         , ::chart::MeanValueRegressionCurve::getImplementationName_Static
     110             :         , ::chart::MeanValueRegressionCurve::getSupportedServiceNames_Static
     111             :         , ::cppu::createSingleComponentFactory
     112             :         , 0
     113             :         , 0
     114             :     }
     115             :    ,{
     116             :           ::chart::LinearRegressionCurve::create
     117             :         , ::chart::LinearRegressionCurve::getImplementationName_Static
     118             :         , ::chart::LinearRegressionCurve::getSupportedServiceNames_Static
     119             :         , ::cppu::createSingleComponentFactory
     120             :         , 0
     121             :         , 0
     122             :     }
     123             :    ,{
     124             :           ::chart::LogarithmicRegressionCurve::create
     125             :         , ::chart::LogarithmicRegressionCurve::getImplementationName_Static
     126             :         , ::chart::LogarithmicRegressionCurve::getSupportedServiceNames_Static
     127             :         , ::cppu::createSingleComponentFactory
     128             :         , 0
     129             :         , 0
     130             :     }
     131             :    ,{
     132             :           ::chart::ExponentialRegressionCurve::create
     133             :         , ::chart::ExponentialRegressionCurve::getImplementationName_Static
     134             :         , ::chart::ExponentialRegressionCurve::getSupportedServiceNames_Static
     135             :         , ::cppu::createSingleComponentFactory
     136             :         , 0
     137             :         , 0
     138             :     }
     139             :    ,{
     140             :           ::chart::PotentialRegressionCurve::create
     141             :         , ::chart::PotentialRegressionCurve::getImplementationName_Static
     142             :         , ::chart::PotentialRegressionCurve::getSupportedServiceNames_Static
     143             :         , ::cppu::createSingleComponentFactory
     144             :         , 0
     145             :         , 0
     146             :     }
     147             :    ,{
     148             :           ::chart::RegressionEquation::create
     149             :         , ::chart::RegressionEquation::getImplementationName_Static
     150             :         , ::chart::RegressionEquation::getSupportedServiceNames_Static
     151             :         , ::cppu::createSingleComponentFactory
     152             :         , 0
     153             :         , 0
     154             :     }
     155             :    ,{
     156             :           ::chart::InternalDataProvider::create
     157             :         , ::chart::InternalDataProvider::getImplementationName_Static
     158             :         , ::chart::InternalDataProvider::getSupportedServiceNames_Static
     159             :         , ::cppu::createSingleComponentFactory
     160             :         , 0
     161             :         , 0
     162             :     }
     163             :    ,{ 0, 0, 0, 0, 0, 0 }
     164             : };
     165             : 
     166             : // component exports
     167             : extern "C"
     168             : {
     169           3 : SAL_DLLPUBLIC_EXPORT void * SAL_CALL charttools_component_getFactory(
     170             :     const sal_Char * pImplName, void * pServiceManager, void * pRegistryKey )
     171             : {
     172             :     return ::cppu::component_getFactoryHelper(
     173           3 :         pImplName, pServiceManager, pRegistryKey , g_entries_chart2_tools );
     174             : }
     175             : }
     176             : //=========================================================================
     177             : 
     178             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10