xref: /trunk/main/sw/source/core/layout/sortedobjs.cxx (revision efeef26f)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 // MARKER(update_precomp.py): autogen include statement, do not remove
25 #include "precompiled_sw.hxx"
26 #include <sortedobjs.hxx>
27 #include <sortedobjsimpl.hxx>
28 
SwSortedObjs()29 SwSortedObjs::SwSortedObjs()
30     : mpImpl( new SwSortedObjsImpl )
31 {
32 }
33 
~SwSortedObjs()34 SwSortedObjs::~SwSortedObjs()
35 {
36     delete mpImpl;
37 }
38 
Count() const39 sal_uInt32 SwSortedObjs::Count() const
40 {
41     return mpImpl->Count();
42 }
43 
operator [](sal_uInt32 _nIndex) const44 SwAnchoredObject* SwSortedObjs::operator[]( sal_uInt32 _nIndex ) const
45 {
46     return (*mpImpl)[ _nIndex ];
47 }
48 
Insert(SwAnchoredObject & _rAnchoredObj)49 bool SwSortedObjs::Insert( SwAnchoredObject& _rAnchoredObj )
50 {
51     return mpImpl->Insert( _rAnchoredObj );
52 }
53 
Remove(SwAnchoredObject & _rAnchoredObj)54 bool SwSortedObjs::Remove( SwAnchoredObject& _rAnchoredObj )
55 {
56     return mpImpl->Remove( _rAnchoredObj );
57 }
58 
Contains(const SwAnchoredObject & _rAnchoredObj) const59 bool SwSortedObjs::Contains( const SwAnchoredObject& _rAnchoredObj ) const
60 {
61     return mpImpl->Contains( _rAnchoredObj );
62 }
63 
Update(SwAnchoredObject & _rAnchoredObj)64 bool SwSortedObjs::Update( SwAnchoredObject& _rAnchoredObj )
65 {
66     return mpImpl->Update( _rAnchoredObj );
67 }
68 
ListPosOf(const SwAnchoredObject & _rAnchoredObj) const69 sal_uInt32 SwSortedObjs::ListPosOf( const SwAnchoredObject& _rAnchoredObj ) const
70 {
71     return mpImpl->ListPosOf( _rAnchoredObj );
72 }
73