LCOV - code coverage report
Current view: top level - reportdesign/source/core/api - services.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 2 0.0 %
Date: 2012-08-25 Functions: 0 1 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 0 -

           Branch data     Line data    Source code
       1                 :            : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2                 :            : /*************************************************************************
       3                 :            :  *
       4                 :            :  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       5                 :            :  *
       6                 :            :  * Copyright 2000, 2010 Oracle and/or its affiliates.
       7                 :            :  *
       8                 :            :  * OpenOffice.org - a multi-platform office productivity suite
       9                 :            :  *
      10                 :            :  * This file is part of OpenOffice.org.
      11                 :            :  *
      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.
      15                 :            :  *
      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).
      21                 :            :  *
      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.
      26                 :            :  *
      27                 :            :  ************************************************************************/
      28                 :            : #include "sal/types.h"
      29                 :            : #include <cppuhelper/factory.hxx>
      30                 :            : #include <osl/diagnose.h>
      31                 :            : #include <cppuhelper/implementationentry.hxx>
      32                 :            : #include "ReportDefinition.hxx"
      33                 :            : #include "FormattedField.hxx"
      34                 :            : #include "FixedText.hxx"
      35                 :            : #include "ImageControl.hxx"
      36                 :            : #include "FormatCondition.hxx"
      37                 :            : #include "ReportEngineJFree.hxx"
      38                 :            : #include "Function.hxx"
      39                 :            : #include "Shape.hxx"
      40                 :            : #include "FixedLine.hxx"
      41                 :            : 
      42                 :            : /********************************************************************************************/
      43                 :            : 
      44                 :            : using namespace ::reportdesign;
      45                 :            : using namespace ::com::sun::star::uno;
      46                 :            : using namespace ::com::sun::star::lang;
      47                 :            : using namespace ::com::sun::star::registry;
      48                 :            : 
      49                 :            : //***************************************************************************************
      50                 :            : //
      51                 :            : // registry functions
      52                 :            : namespace
      53                 :            : {
      54                 :            : 
      55                 :            : cppu::ImplementationEntry entries[] = {
      56                 :            :     { &OReportDefinition::create, &OReportDefinition::getImplementationName_Static, &OReportDefinition::getSupportedServiceNames_Static,
      57                 :            :         &cppu::createSingleComponentFactory, 0, 0 },
      58                 :            :     { &OFormattedField::create, &OFormattedField::getImplementationName_Static, &OFormattedField::getSupportedServiceNames_Static,
      59                 :            :         &cppu::createSingleComponentFactory, 0, 0 },
      60                 :            :     { &OFixedText::create, &OFixedText::getImplementationName_Static, &OFixedText::getSupportedServiceNames_Static,
      61                 :            :         &cppu::createSingleComponentFactory, 0, 0 },
      62                 :            :     { &OImageControl::create, &OImageControl::getImplementationName_Static, &OImageControl::getSupportedServiceNames_Static,
      63                 :            :         &cppu::createSingleComponentFactory, 0, 0 },
      64                 :            :     { &OFormatCondition::create, &OFormatCondition::getImplementationName_Static, &OFormatCondition::getSupportedServiceNames_Static,
      65                 :            :         &cppu::createSingleComponentFactory, 0, 0 },
      66                 :            :     { &OReportEngineJFree::create, &OReportEngineJFree::getImplementationName_Static, &OReportEngineJFree::getSupportedServiceNames_Static,
      67                 :            :         &cppu::createSingleComponentFactory, 0, 0 },
      68                 :            :     { &OFunction::create, &OFunction::getImplementationName_Static, &OFunction::getSupportedServiceNames_Static,
      69                 :            :         &cppu::createSingleComponentFactory, 0, 0 },
      70                 :            :     { &OShape::create, &OShape::getImplementationName_Static, &OShape::getSupportedServiceNames_Static,
      71                 :            :         &cppu::createSingleComponentFactory, 0, 0 },
      72                 :            :     { &OFixedLine::create, &OFixedLine::getImplementationName_Static, &OFixedLine::getSupportedServiceNames_Static,
      73                 :            :     &cppu::createSingleComponentFactory, 0, 0 },
      74                 :            :     { 0, 0, 0, 0, 0, 0 }
      75                 :            : };
      76                 :            : }
      77                 :            : 
      78                 :            : extern "C"
      79                 :            : {
      80                 :          0 : SAL_DLLPUBLIC_EXPORT void * SAL_CALL rpt_component_getFactory(
      81                 :            :     char const * implName, void * serviceManager, void * registryKey)
      82                 :            : {
      83                 :            :     return cppu::component_getFactoryHelper(
      84                 :          0 :         implName, serviceManager, registryKey, entries);
      85                 :            : }
      86                 :            : 
      87                 :            : } // extern "C"
      88                 :            : 
      89                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10