LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/filter/source/graphic - Services.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 11 0.0 %
Date: 2013-07-09 Functions: 0 3 0.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 "GraphicExportDialog.hxx"
      21             : #include "GraphicExportFilter.hxx"
      22             : #include <comphelper/servicedecl.hxx>
      23             : 
      24             : #define GRAPHIC_EXPORT_FILTER_SERVICE "com.sun.star.comp.GraphicExportFilter"
      25             : #define GRAPHIC_EXPORT_DIALOG_SERVICE "com.sun.star.comp.GraphicExportDialog"
      26             : 
      27           0 : comphelper::service_decl::class_<GraphicExportFilter> serviceGraphicExportFilter;
      28           0 : const comphelper::service_decl::ServiceDecl graphicExportFilter(
      29             :     serviceGraphicExportFilter,
      30             :     GRAPHIC_EXPORT_FILTER_SERVICE,
      31             :     "com.sun.star.document.ExportFilter" );
      32             : 
      33           0 : comphelper::service_decl::class_<GraphicExportDialog> serviceGraphicExportDialog;
      34           0 : const comphelper::service_decl::ServiceDecl graphicExportDialog(
      35             :     serviceGraphicExportDialog,
      36             :     GRAPHIC_EXPORT_DIALOG_SERVICE,
      37             :     "com.sun.star.ui.dialog.FilterOptionsDialog" );
      38             : 
      39             : 
      40           0 : extern "C" SAL_DLLPUBLIC_EXPORT void* SAL_CALL graphicfilter_component_getFactory(
      41             :     sal_Char const* pImplementationName,
      42             :     ::com::sun::star::lang::XMultiServiceFactory* pServiceManager,
      43             :     ::com::sun::star::registry::XRegistryKey* pRegistryKey )
      44             : {
      45           0 :     if ( rtl_str_compare (pImplementationName, GRAPHIC_EXPORT_FILTER_SERVICE) == 0 )
      46             :     {
      47           0 :         return component_getFactoryHelper( pImplementationName, pServiceManager, pRegistryKey, graphicExportFilter );
      48             :     }
      49           0 :     else if ( rtl_str_compare (pImplementationName, GRAPHIC_EXPORT_DIALOG_SERVICE) == 0 )
      50             :     {
      51           0 :         return component_getFactoryHelper( pImplementationName, pServiceManager, pRegistryKey, graphicExportDialog );
      52             :     }
      53           0 :     return NULL;
      54           0 : }
      55             : 
      56             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10