LCOV - code coverage report
Current view: top level - sc/source/ui/vba - service.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 5 5 100.0 %
Date: 2012-08-25 Functions: 1 1 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 2 2 100.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 "cppuhelper/implementationentry.hxx"
      29                 :            : #include "com/sun/star/lang/XMultiServiceFactory.hpp"
      30                 :            : #include "com/sun/star/registry/XRegistryKey.hpp"
      31                 :            : #include "comphelper/servicedecl.hxx"
      32                 :            : 
      33                 :            : // =============================================================================
      34                 :            : // component exports
      35                 :            : // =============================================================================
      36                 :            : using namespace ::com::sun::star;
      37                 :            : using namespace ::com::sun::star::uno;
      38                 :            : 
      39                 :            : namespace sdecl = comphelper::service_decl;
      40                 :            : 
      41                 :            : // reference service helper(s)
      42                 :            : namespace  range
      43                 :            : {
      44                 :            : extern sdecl::ServiceDecl const serviceDecl;
      45                 :            : }
      46                 :            : namespace  workbook
      47                 :            : {
      48                 :            : extern sdecl::ServiceDecl const serviceDecl;
      49                 :            : }
      50                 :            : namespace  worksheet
      51                 :            : {
      52                 :            : extern sdecl::ServiceDecl const serviceDecl;
      53                 :            : }
      54                 :            : namespace window
      55                 :            : {
      56                 :            : extern sdecl::ServiceDecl const serviceDecl;
      57                 :            : }
      58                 :            : namespace globals
      59                 :            : {
      60                 :            : extern sdecl::ServiceDecl const serviceDecl;
      61                 :            : }
      62                 :            : namespace hyperlink
      63                 :            : {
      64                 :            : extern sdecl::ServiceDecl const serviceDecl;
      65                 :            : }
      66                 :            : namespace application
      67                 :            : {
      68                 :            : extern sdecl::ServiceDecl const serviceDecl;
      69                 :            : }
      70                 :            : namespace vbaeventshelper
      71                 :            : {
      72                 :            : extern sdecl::ServiceDecl const serviceDecl;
      73                 :            : }
      74                 :            : namespace textframe
      75                 :            : {
      76                 :            : extern sdecl::ServiceDecl const serviceDecl;
      77                 :            : }
      78                 :            : 
      79                 :            : extern "C"
      80                 :            : {
      81                 :         10 :     SAL_DLLPUBLIC_EXPORT void * SAL_CALL vbaobj_component_getFactory(
      82                 :            :         const sal_Char * pImplName, lang::XMultiServiceFactory * pServiceManager,
      83                 :            :         registry::XRegistryKey * pRegistryKey )
      84                 :            :     {
      85                 :            :         OSL_TRACE("In vbaobj_component_getFactory for %s", pImplName );
      86                 :            :     void* pRet =  component_getFactoryHelper(
      87                 :         10 :             pImplName, pServiceManager, pRegistryKey, range::serviceDecl, workbook::serviceDecl, worksheet::serviceDecl, globals::serviceDecl, window::serviceDecl, hyperlink::serviceDecl, application::serviceDecl );
      88         [ +  + ]:         10 :     if( !pRet )
      89                 :          3 :         pRet = component_getFactoryHelper( pImplName, pServiceManager, pRegistryKey, vbaeventshelper::serviceDecl, textframe::serviceDecl );
      90                 :            :     OSL_TRACE("Ret is 0x%x", pRet);
      91                 :         10 :     return pRet;
      92                 :            :     }
      93                 :            : }
      94                 :            : 
      95                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10