LCOV - code coverage report
Current view: top level - chart2/source/model/template - BarChartType.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 1 18 5.6 %
Date: 2012-08-25 Functions: 1 11 9.1 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 24 0.0 %

           Branch data     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 "BarChartType.hxx"
      21                 :            : #include "macros.hxx"
      22                 :            : #include "servicenames_charttypes.hxx"
      23                 :            : 
      24                 :            : using namespace ::com::sun::star;
      25                 :            : 
      26                 :            : namespace chart
      27                 :            : {
      28                 :            : 
      29                 :          0 : BarChartType::BarChartType(
      30                 :            :     const uno::Reference< uno::XComponentContext > & xContext ) :
      31                 :          0 :         ChartType( xContext )
      32                 :          0 : {}
      33                 :            : 
      34                 :          0 : BarChartType::BarChartType( const BarChartType & rOther ) :
      35                 :          0 :         ChartType( rOther )
      36                 :            : {
      37                 :          0 : }
      38                 :            : 
      39                 :          0 : BarChartType::~BarChartType()
      40         [ #  # ]:          0 : {}
      41                 :            : 
      42                 :            : // ____ XCloneable ____
      43                 :          0 : uno::Reference< util::XCloneable > SAL_CALL BarChartType::createClone()
      44                 :            :     throw (uno::RuntimeException)
      45                 :            : {
      46 [ #  # ][ #  # ]:          0 :     return uno::Reference< util::XCloneable >( new BarChartType( *this ));
      47                 :            : }
      48                 :            : 
      49                 :            : // ____ XChartType ____
      50                 :          0 : ::rtl::OUString SAL_CALL BarChartType::getChartType()
      51                 :            :     throw (uno::RuntimeException)
      52                 :            : {
      53                 :          0 :     return CHART2_SERVICE_NAME_CHARTTYPE_BAR;
      54                 :            : }
      55                 :            : 
      56                 :          0 : uno::Sequence< ::rtl::OUString > BarChartType::getSupportedServiceNames_Static()
      57                 :            : {
      58                 :          0 :     uno::Sequence< ::rtl::OUString > aServices( 2 );
      59 [ #  # ][ #  # ]:          0 :     aServices[ 0 ] = CHART2_SERVICE_NAME_CHARTTYPE_BAR;
      60 [ #  # ][ #  # ]:          0 :     aServices[ 1 ] = C2U( "com.sun.star.chart2.ChartType" );
      61                 :          0 :     return aServices;
      62                 :            : }
      63                 :            : 
      64                 :            : // implement XServiceInfo methods basing upon getSupportedServiceNames_Static
      65 [ #  # ][ #  # ]:         77 : APPHELPER_XSERVICEINFO_IMPL( BarChartType,
         [ #  # ][ #  # ]
                 [ #  # ]
      66                 :            :                              C2U( "com.sun.star.comp.chart.BarChartType" ));
      67                 :            : 
      68                 :            : } //  namespace chart
      69                 :            : 
      70                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10