merged tag ooo/OOO330_m14
[LibreOffice.git] / chart2 / source / inc / DisposeHelper.hxx
blob7e8932f17581d2335be3249678eb7bfb4b746bf2
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
27 #ifndef CHART2_DISPOSEHELPER_HXX
28 #define CHART2_DISPOSEHELPER_HXX
30 #include <com/sun/star/uno/Reference.hxx>
31 #include <com/sun/star/lang/XComponent.hpp>
33 #include <functional>
34 #include <algorithm>
35 #include <utility>
37 namespace chart
39 namespace DisposeHelper
42 template< class T >
43 void Dispose( const T & xIntf )
45 ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent > xComp(
46 xIntf, ::com::sun::star::uno::UNO_QUERY );
47 if( xComp.is())
48 xComp->dispose();
51 template< class Intf >
52 void DisposeAndClear( ::com::sun::star::uno::Reference< Intf > & rIntf )
54 Dispose< ::com::sun::star::uno::Reference< Intf > >( rIntf );
55 rIntf.set( 0 );
58 template< class T >
59 struct DisposeFunctor : public ::std::unary_function< T, void >
61 void operator() ( const T & xIntf )
63 Dispose< T >( xIntf );
67 template< typename T >
68 struct DisposeFirstOfPairFunctor : public ::std::unary_function< T, void >
70 void operator() ( const T & rElem )
72 Dispose< typename T::first_type >( rElem.first );
76 template< typename T >
77 struct DisposeSecondOfPairFunctor : public ::std::unary_function< T, void >
79 void operator() ( const T & rElem )
81 Dispose< typename T::second_type >( rElem.second );
85 template< class Container >
86 void DisposeAllElements( Container & rContainer )
88 ::std::for_each( rContainer.begin(), rContainer.end(), DisposeFunctor< typename Container::value_type >());
91 template< class Map >
92 void DisposeAllMapElements( Map & rContainer )
94 ::std::for_each( rContainer.begin(), rContainer.end(), DisposeSecondOfPairFunctor< typename Map::value_type >());
97 } // namespace DisposeHelper
98 } // namespace chart
100 // CHART2_DISPOSEHELPER_HXX
101 #endif