LCOV - code coverage report
Current view: top level - sfx2/source/inc - ctrlfactoryimpl.hxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 3 3 100.0 %
Date: 2015-06-13 12:38:46 Functions: 6 6 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             : #ifndef INCLUDED_SFX2_CTRLFACTORYIMPL_HXX
      21             : #define INCLUDED_SFX2_CTRLFACTORYIMPL_HXX
      22             : 
      23             : #include <sfx2/mnuitem.hxx>
      24             : #include <sfx2/stbitem.hxx>
      25             : #include <sfx2/tbxctrl.hxx>
      26             : 
      27             : #include <boost/ptr_container/ptr_vector.hpp>
      28             : 
      29         512 : class SfxMenuCtrlFactArr_Impl
      30             : {
      31             :     typedef boost::ptr_vector<SfxMenuCtrlFactory> DataType;
      32             :     DataType maData;
      33             : 
      34             : public:
      35             :     const SfxMenuCtrlFactory& operator []( size_t i ) const;
      36             :     SfxMenuCtrlFactory& operator []( size_t i );
      37             : 
      38             :     void push_back( SfxMenuCtrlFactory* p );
      39             : 
      40             :     size_t size() const;
      41             : };
      42             : 
      43         528 : class SfxStbCtrlFactArr_Impl
      44             : {
      45             :     typedef boost::ptr_vector<SfxStbCtrlFactory> DataType;
      46             :     DataType maData;
      47             : 
      48             : public:
      49             :     const SfxStbCtrlFactory& operator []( size_t i ) const;
      50             :     SfxStbCtrlFactory& operator []( size_t i );
      51             : 
      52             :     void push_back( SfxStbCtrlFactory* p );
      53             : 
      54             :     size_t size() const;
      55             : };
      56             : 
      57         528 : class SfxTbxCtrlFactArr_Impl
      58             : {
      59             :     typedef boost::ptr_vector<SfxTbxCtrlFactory> DataType;
      60             :     DataType maData;
      61             : 
      62             : public:
      63             :     const SfxTbxCtrlFactory& operator []( size_t i ) const;
      64             :     SfxTbxCtrlFactory& operator []( size_t i );
      65             : 
      66             :     void push_back( SfxTbxCtrlFactory* p );
      67             : 
      68             :     size_t size() const;
      69             : };
      70             : 
      71             : #endif
      72             : 
      73             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11