LCOV - code coverage report
Current view: top level - chart2/source/model/template - AreaChartType.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 20 27 74.1 %
Date: 2015-06-13 12:38:46 Functions: 9 12 75.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 "AreaChartType.hxx"
      21             : #include "macros.hxx"
      22             : #include "servicenames_charttypes.hxx"
      23             : #include <cppuhelper/supportsservice.hxx>
      24             : 
      25             : using namespace ::com::sun::star;
      26             : 
      27             : namespace chart
      28             : {
      29             : 
      30        8498 : AreaChartType::AreaChartType(
      31             :     const uno::Reference< uno::XComponentContext > & xContext ) :
      32        8498 :         ChartType( xContext )
      33        8498 : {}
      34             : 
      35           0 : AreaChartType::AreaChartType( const AreaChartType & rOther ) :
      36           0 :         ChartType( rOther )
      37           0 : {}
      38             : 
      39       16996 : AreaChartType::~AreaChartType()
      40       16996 : {}
      41             : 
      42             : // ____ XCloneable ____
      43           0 : uno::Reference< util::XCloneable > SAL_CALL AreaChartType::createClone()
      44             :     throw (uno::RuntimeException, std::exception)
      45             : {
      46           0 :     return uno::Reference< util::XCloneable >( new AreaChartType( *this ));
      47             : }
      48             : 
      49             : // ____ XChartType ____
      50       20101 : OUString SAL_CALL AreaChartType::getChartType()
      51             :     throw (uno::RuntimeException, std::exception)
      52             : {
      53       20101 :     return OUString(CHART2_SERVICE_NAME_CHARTTYPE_AREA);
      54             : }
      55             : 
      56           1 : uno::Sequence< OUString > AreaChartType::getSupportedServiceNames_Static()
      57             : {
      58           1 :     uno::Sequence< OUString > aServices( 2 );
      59           1 :     aServices[ 0 ] = CHART2_SERVICE_NAME_CHARTTYPE_AREA;
      60           1 :     aServices[ 1 ] = "com.sun.star.chart2.ChartType";
      61           1 :     return aServices;
      62             : }
      63             : 
      64             : // implement XServiceInfo methods basing upon getSupportedServiceNames_Static
      65           1 : OUString SAL_CALL AreaChartType::getImplementationName()
      66             :     throw( css::uno::RuntimeException, std::exception )
      67             : {
      68           1 :     return getImplementationName_Static();
      69             : }
      70             : 
      71           1 : OUString AreaChartType::getImplementationName_Static()
      72             : {
      73           1 :     return OUString("com.sun.star.comp.chart.AreaChartType");
      74             : }
      75             : 
      76           0 : sal_Bool SAL_CALL AreaChartType::supportsService( const OUString& rServiceName )
      77             :     throw( css::uno::RuntimeException, std::exception )
      78             : {
      79           0 :     return cppu::supportsService(this, rServiceName);
      80             : }
      81             : 
      82           1 : css::uno::Sequence< OUString > SAL_CALL AreaChartType::getSupportedServiceNames()
      83             :     throw( css::uno::RuntimeException, std::exception )
      84             : {
      85           1 :     return getSupportedServiceNames_Static();
      86             : }
      87             : 
      88             : } //  namespace chart
      89             : 
      90             : extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL
      91        8498 : com_sun_star_comp_chart_AreaChartType_get_implementation(css::uno::XComponentContext *context,
      92             :         css::uno::Sequence<css::uno::Any> const &)
      93             : {
      94        8498 :     return cppu::acquire(new ::chart::AreaChartType(context));
      95             : }
      96             : 
      97             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11