LCOV - code coverage report
Current view: top level - oox/source/drawingml/chart - seriesmodel.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 50 50 100.0 %
Date: 2015-06-13 12:38:46 Functions: 20 20 100.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 "drawingml/chart/seriesmodel.hxx"
      21             : #include <oox/token/tokens.hxx>
      22             : 
      23             : namespace oox {
      24             : namespace drawingml {
      25             : namespace chart {
      26             : 
      27         385 : DataLabelModelBase::DataLabelModelBase(bool bMSO2007Doc) :
      28         385 :     mbDeleted( !bMSO2007Doc )
      29             : {
      30         385 : }
      31             : 
      32         385 : DataLabelModelBase::~DataLabelModelBase()
      33             : {
      34         385 : }
      35             : 
      36         142 : DataLabelModel::DataLabelModel(bool bMSO2007Doc) :
      37             :     DataLabelModelBase(bMSO2007Doc),
      38         142 :     mnIndex( -1 )
      39             : {
      40         142 : }
      41             : 
      42         142 : DataLabelModel::~DataLabelModel()
      43             : {
      44         142 : }
      45             : 
      46         243 : DataLabelsModel::DataLabelsModel(bool bMSO2007Doc) :
      47             :     DataLabelModelBase(bMSO2007Doc),
      48         243 :     mbShowLeaderLines( !bMSO2007Doc )
      49             : {
      50         243 : }
      51             : 
      52         243 : DataLabelsModel::~DataLabelsModel()
      53             : {
      54         243 : }
      55             : 
      56         263 : PictureOptionsModel::PictureOptionsModel(bool bMSO2007Doc) :
      57             :     mfStackUnit( 1.0 ),
      58             :     mnPictureFormat( XML_stretch ),
      59         263 :     mbApplyToFront( !bMSO2007Doc ),
      60         263 :     mbApplyToSides( !bMSO2007Doc ),
      61         789 :     mbApplyToEnd( !bMSO2007Doc )
      62             : {
      63         263 : }
      64             : 
      65         263 : PictureOptionsModel::~PictureOptionsModel()
      66             : {
      67         263 : }
      68             : 
      69           1 : ErrorBarModel::ErrorBarModel(bool bMSO2007Doc) :
      70             :     mfValue( 0.0 ),
      71             :     mnDirection( XML_y ),
      72             :     mnTypeId( XML_both ),
      73             :     mnValueType( XML_fixedVal ),
      74           1 :     mbNoEndCap( !bMSO2007Doc )
      75             : {
      76           1 : }
      77             : 
      78           1 : ErrorBarModel::~ErrorBarModel()
      79             : {
      80           1 : }
      81             : 
      82           3 : TrendlineLabelModel::TrendlineLabelModel()
      83             : {
      84           3 : }
      85             : 
      86           3 : TrendlineLabelModel::~TrendlineLabelModel()
      87             : {
      88           3 : }
      89             : 
      90           5 : TrendlineModel::TrendlineModel(bool bMSO2007Doc) :
      91             :     mnOrder( 2 ),
      92             :     mnPeriod( 2 ),
      93             :     mnTypeId( XML_linear ),
      94           5 :     mbDispEquation( !bMSO2007Doc ),
      95          10 :     mbDispRSquared( !bMSO2007Doc )
      96             : {
      97           5 : }
      98             : 
      99           5 : TrendlineModel::~TrendlineModel()
     100             : {
     101           5 : }
     102             : 
     103         102 : DataPointModel::DataPointModel(bool bMSO2007Doc) :
     104             :     mnIndex( -1 ),
     105         102 :     mbInvertNeg( !bMSO2007Doc )
     106             : {
     107         102 : }
     108             : 
     109         102 : DataPointModel::~DataPointModel()
     110             : {
     111         102 : }
     112             : 
     113         340 : SeriesModel::SeriesModel(bool bMSO2007Doc) :
     114             :     mnExplosion( 0 ),
     115             :     mnIndex( -1 ),
     116             :     mnMarkerSize( 5 ),
     117             :     mnMarkerSymbol( XML_auto ),
     118             :     mnOrder( -1 ),
     119         340 :     mbBubble3d( !bMSO2007Doc ),
     120         340 :     mbInvertNeg( !bMSO2007Doc ),
     121        1020 :     mbSmooth( !bMSO2007Doc )
     122             : {
     123         340 : }
     124             : 
     125         340 : SeriesModel::~SeriesModel()
     126             : {
     127         340 : }
     128             : 
     129             : } // namespace chart
     130             : } // namespace drawingml
     131         246 : } // namespace oox
     132             : 
     133             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11