LCOV - code coverage report
Current view: top level - include/svl - grabbagitem.hxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 2 2 100.0 %
Date: 2014-11-03 Functions: 1 1 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             : #ifndef INCLUDED_SVL_GRABBAGITEM_HXX
      10             : #define INCLUDED_SVL_GRABBAGITEM_HXX
      11             : 
      12             : #include <map>
      13             : 
      14             : #include <svl/svldllapi.h>
      15             : #include <tools/rtti.hxx>
      16             : #include <svl/poolitem.hxx>
      17             : #include <com/sun/star/uno/Any.hxx>
      18             : 
      19             : /// Grab bag item provides a string-any map for interim interop purposes.
      20             : class SVL_DLLPUBLIC SfxGrabBagItem : public SfxPoolItem
      21             : {
      22             : private:
      23             :     std::map<OUString, com::sun::star::uno::Any> m_aMap;
      24             : 
      25             : public:
      26             :     TYPEINFO_OVERRIDE();
      27             : 
      28             :     SfxGrabBagItem();
      29             :     SfxGrabBagItem(sal_uInt16 nWhich, const std::map<OUString, com::sun::star::uno::Any>* pMap = 0);
      30             :     SfxGrabBagItem(const SfxGrabBagItem& rItem);
      31             :     virtual ~SfxGrabBagItem();
      32             : 
      33       29108 :     const std::map<OUString, com::sun::star::uno::Any>& GetGrabBag() const
      34             :     {
      35       29108 :         return m_aMap;
      36             :     }
      37             : 
      38             :     virtual bool operator==(const SfxPoolItem&) const SAL_OVERRIDE;
      39             :     virtual SfxPoolItem* Clone(SfxItemPool* pPool = 0) const SAL_OVERRIDE;
      40             : 
      41             :     virtual bool PutValue(const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0) SAL_OVERRIDE;
      42             :     virtual bool QueryValue(com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0) const SAL_OVERRIDE;
      43             : };
      44             : #endif
      45             : 
      46             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10