LCOV - code coverage report
Current view: top level - libreoffice/sc/source/filter/inc - excscen.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 2 5 40.0 %
Date: 2012-12-27 Functions: 2 5 40.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             : #ifndef SC_EXCSCEN_HXX
      21             : #define SC_EXCSCEN_HXX
      22             : 
      23             : #include <boost/ptr_container/ptr_vector.hpp>
      24             : 
      25             : #include <tools/solar.h>
      26             : #include <tools/string.hxx>
      27             : 
      28             : struct RootData;
      29             : class XclImpRoot;
      30             : class XclImpStream;
      31             : 
      32           0 : class ExcScenarioCell
      33             : {
      34             : private:
      35             :     String                      aValue;
      36             : public:
      37             :     const sal_uInt16                nCol;
      38             :     const sal_uInt16                nRow;
      39             : 
      40             :     ExcScenarioCell( const sal_uInt16 nC, const sal_uInt16 nR );
      41             : 
      42           0 :     inline void SetValue( const String& rVal ) { aValue = rVal; }
      43             : 
      44           0 :     inline const String& GetValue( void ) const { return aValue; }
      45             : };
      46             : 
      47             : class ExcScenario
      48             : {
      49             : public:
      50             : 
      51             :     ExcScenario( XclImpStream& rIn, const RootData& rRoot );
      52             : 
      53             :     ~ExcScenario();
      54             : 
      55             :     void Apply( const XclImpRoot& rRoot, const sal_Bool bLast = false );
      56             : 
      57             : protected:
      58             : 
      59             :     String* pName;
      60             :     String* pComment;
      61             :     String* pUserName;
      62             :     sal_uInt8 nProtected;
      63             :     const sal_uInt16 nTab;
      64             :     boost::ptr_vector<ExcScenarioCell> aEntries;
      65             : };
      66             : 
      67          20 : struct ExcScenarioList
      68             : {
      69          20 :     ExcScenarioList () : nLastScenario(0) {}
      70             : 
      71             :     void Apply( const XclImpRoot& rRoot );
      72             : 
      73             :     sal_uInt16 nLastScenario;
      74             :     boost::ptr_vector<ExcScenario> aEntries;
      75             : };
      76             : 
      77             : #endif
      78             : 
      79             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10