xref: /aoo41x/main/svl/source/notify/isethint.cxx (revision 40df464e)
1*40df464eSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*40df464eSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*40df464eSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*40df464eSAndrew Rist  * distributed with this work for additional information
6*40df464eSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*40df464eSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*40df464eSAndrew Rist  * "License"); you may not use this file except in compliance
9*40df464eSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*40df464eSAndrew Rist  *
11*40df464eSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*40df464eSAndrew Rist  *
13*40df464eSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*40df464eSAndrew Rist  * software distributed under the License is distributed on an
15*40df464eSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*40df464eSAndrew Rist  * KIND, either express or implied.  See the License for the
17*40df464eSAndrew Rist  * specific language governing permissions and limitations
18*40df464eSAndrew Rist  * under the License.
19*40df464eSAndrew Rist  *
20*40df464eSAndrew Rist  *************************************************************/
21*40df464eSAndrew Rist 
22*40df464eSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_svl.hxx"
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #ifndef GCC
28cdf0e10cSrcweir #endif
29cdf0e10cSrcweir 
30cdf0e10cSrcweir #include <svl/isethint.hxx>
31cdf0e10cSrcweir #include <svl/itemset.hxx>
32cdf0e10cSrcweir 
33cdf0e10cSrcweir //====================================================================
34cdf0e10cSrcweir 
35cdf0e10cSrcweir TYPEINIT1(SfxItemSetHint, SfxHint);
36cdf0e10cSrcweir 
37cdf0e10cSrcweir //====================================================================
38cdf0e10cSrcweir 
SfxItemSetHint(SfxItemSet * pItemSet)39cdf0e10cSrcweir SfxItemSetHint::SfxItemSetHint( SfxItemSet *pItemSet )
40cdf0e10cSrcweir 
41cdf0e10cSrcweir /*	[Beschreibung]
42cdf0e10cSrcweir 
43cdf0e10cSrcweir 	Dieser Ctor "ubernimmt das als Parameter "ubergeben <SfxItemSet>,
44cdf0e10cSrcweir 	das im Dtor gel"oscht wird.
45cdf0e10cSrcweir */
46cdf0e10cSrcweir 
47cdf0e10cSrcweir :	_pItemSet( pItemSet )
48cdf0e10cSrcweir {
49cdf0e10cSrcweir }
50cdf0e10cSrcweir 
51cdf0e10cSrcweir //--------------------------------------------------------------------
52cdf0e10cSrcweir 
SfxItemSetHint(const SfxItemSet & rItemSet)53cdf0e10cSrcweir SfxItemSetHint::SfxItemSetHint( const SfxItemSet &rItemSet )
54cdf0e10cSrcweir 
55cdf0e10cSrcweir /*	[Beschreibung]
56cdf0e10cSrcweir 
57cdf0e10cSrcweir 	Dieser Ctor kopiert das als Parameter "ubergeben <SfxItemSet>.
58cdf0e10cSrcweir */
59cdf0e10cSrcweir 
60cdf0e10cSrcweir :	_pItemSet( rItemSet.Clone() )
61cdf0e10cSrcweir {
62cdf0e10cSrcweir }
63cdf0e10cSrcweir 
64cdf0e10cSrcweir //--------------------------------------------------------------------
65cdf0e10cSrcweir 
~SfxItemSetHint()66cdf0e10cSrcweir SfxItemSetHint::~SfxItemSetHint()
67cdf0e10cSrcweir {
68cdf0e10cSrcweir 	delete _pItemSet;
69cdf0e10cSrcweir }
70cdf0e10cSrcweir 
71cdf0e10cSrcweir //--------------------------------------------------------------------
72