LCOV - code coverage report
Current view: top level - writerfilter/source/filter - WriterFilter.cxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 7 0.0 %
Date: 2014-04-14 Functions: 0 4 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 <cppuhelper/implementationentry.hxx>
      21             : #include <WriterFilter.hxx>
      22             : #include <WriterFilterDetection.hxx>
      23             : #include <RtfFilter.hxx>
      24             : 
      25             : using namespace ::rtl;
      26             : using namespace ::cppu;
      27             : using namespace ::com::sun::star;
      28             : 
      29             : 
      30             : 
      31           0 : WriterFilter::WriterFilter( const uno::Reference< uno::XComponentContext >& rxContext)  :
      32           0 :     m_xContext( rxContext )
      33             : {
      34           0 : }
      35             : 
      36             : 
      37           0 : WriterFilter::~WriterFilter()
      38             : {
      39           0 : }
      40             : 
      41             : extern "C"
      42             : {
      43             : /* shared lib exports implemented with helpers */
      44             : static const struct ::cppu::ImplementationEntry s_component_entries [] =
      45             : {
      46             :     { WriterFilter_createInstance, WriterFilter_getImplementationName, WriterFilter_getSupportedServiceNames, ::cppu::createSingleComponentFactory, 0, 0 },
      47             :     { WriterFilterDetection_createInstance, WriterFilterDetection_getImplementationName, WriterFilterDetection_getSupportedServiceNames, ::cppu::createSingleComponentFactory, 0, 0} ,
      48             :     { RtfFilter_createInstance, RtfFilter_getImplementationName, RtfFilter_getSupportedServiceNames, ::cppu::createSingleComponentFactory, 0, 0 },
      49             :     { 0, 0, 0, 0, 0, 0 } // terminate with NULL
      50             : };
      51             : 
      52           0 : SAL_DLLPUBLIC_EXPORT void * SAL_CALL writerfilter_component_getFactory(sal_Char const * implName, ::com::sun::star::lang::XMultiServiceFactory * xMgr, ::com::sun::star::registry::XRegistryKey * xRegistry )
      53             : {
      54           0 :     return ::cppu::component_getFactoryHelper(implName, xMgr, xRegistry, s_component_entries );
      55             : }
      56             : 
      57             : } //extern "C"
      58             : 
      59             : 
      60             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10