1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 #ifndef INCLUDED_SVL_GRABBAGITEM_HXX
10 #define INCLUDED_SVL_GRABBAGITEM_HXX
14 #include <svl/svldllapi.h>
15 #include <tools/rtti.hxx>
16 #include <svl/poolitem.hxx>
17 #include <com/sun/star/uno/Any.hxx>
19 /// Grab bag item provides a string-any map for interim interop purposes.
20 class SVL_DLLPUBLIC SfxGrabBagItem
: public SfxPoolItem
23 std::map
<OUString
, css::uno::Any
> m_aMap
;
29 SfxGrabBagItem(sal_uInt16 nWhich
, const std::map
<OUString
, css::uno::Any
>* pMap
= 0);
30 SfxGrabBagItem(const SfxGrabBagItem
& rItem
);
31 virtual ~SfxGrabBagItem();
33 const std::map
<OUString
, css::uno::Any
>& GetGrabBag() const
38 std::map
<OUString
, css::uno::Any
>& GetGrabBag()
43 virtual bool operator==(const SfxPoolItem
&) const SAL_OVERRIDE
;
44 virtual SfxPoolItem
* Clone(SfxItemPool
* pPool
= 0) const SAL_OVERRIDE
;
46 virtual bool PutValue(const css::uno::Any
& rVal
, sal_uInt8 nMemberId
= 0) SAL_OVERRIDE
;
47 virtual bool QueryValue(css::uno::Any
& rVal
, sal_uInt8 nMemberId
= 0) const SAL_OVERRIDE
;
51 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */