GPU-Calc: remove Alloc_Host_Ptr for clmem of NAN vector
[LibreOffice.git] / svl / source / config / itemholder2.hxx
blob7e8c596acc02fa210541082421cf2aacfb2750e5
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 class ItemHolder2 : private ItemHolderMutexBase
28 , public ::cppu::WeakImplHelper1< css::lang::XEventListener >
30 // member
31 private:
33 TItems m_lItems;
35 // c++ interface
36 public:
38 ItemHolder2();
39 virtual ~ItemHolder2();
40 static void holdConfigItem(EItem eItem);
42 // uno interface
43 public:
45 virtual void SAL_CALL disposing(const css::lang::EventObject& aEvent)
46 throw(css::uno::RuntimeException);
48 // helper
49 private:
51 void impl_addItem(EItem eItem);
52 void impl_releaseAllItems();
53 void impl_newItem(TItemInfo& rItem);
54 void impl_deleteItem(TItemInfo& rItem);
57 #endif // INCLUDED_SVTOOLS_ITEMHOLDER2_HXX_
59 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */