Bump version to 5.0-14
[LibreOffice.git] / svtools / source / config / itemholder2.hxx
blobe1363a5aa52d7555af1e9b16073694c881525f65
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_SVTOOLS_ITEMHOLDER2_HXX_
21 #define INCLUDED_SVTOOLS_ITEMHOLDER2_HXX_
23 #include <unotools/itemholderbase.hxx>
24 #include <cppuhelper/implbase1.hxx>
25 #include <com/sun/star/lang/XEventListener.hpp>
27 namespace svtools {
30 class ItemHolder2 : private ItemHolderMutexBase
31 , public ::cppu::WeakImplHelper1< css::lang::XEventListener >
34 // member
35 private:
37 TItems m_lItems;
40 // c++ interface
41 public:
43 ItemHolder2();
44 virtual ~ItemHolder2();
45 static void holdConfigItem(EItem eItem);
48 // uno interface
49 public:
51 virtual void SAL_CALL disposing(const css::lang::EventObject& aEvent)
52 throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
55 // helper
56 private:
58 void impl_addItem(EItem eItem);
59 void impl_releaseAllItems();
60 static void impl_newItem(TItemInfo& rItem);
61 static void impl_deleteItem(TItemInfo& rItem);
64 } // namespace svtools
66 #endif // INCLUDED_SVTOOLS_ITEMHOLDER2_HXX_
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */