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()29SwSortedObjs::SwSortedObjs() 30 : mpImpl( new SwSortedObjsImpl ) 31 { 32 } 33 ~SwSortedObjs()34SwSortedObjs::~SwSortedObjs() 35 { 36 delete mpImpl; 37 } 38 Count() const39sal_uInt32 SwSortedObjs::Count() const 40 { 41 return mpImpl->Count(); 42 } 43 operator [](sal_uInt32 _nIndex) const44SwAnchoredObject* SwSortedObjs::operator[]( sal_uInt32 _nIndex ) const 45 { 46 return (*mpImpl)[ _nIndex ]; 47 } 48 Insert(SwAnchoredObject & _rAnchoredObj)49bool SwSortedObjs::Insert( SwAnchoredObject& _rAnchoredObj ) 50 { 51 return mpImpl->Insert( _rAnchoredObj ); 52 } 53 Remove(SwAnchoredObject & _rAnchoredObj)54bool SwSortedObjs::Remove( SwAnchoredObject& _rAnchoredObj ) 55 { 56 return mpImpl->Remove( _rAnchoredObj ); 57 } 58 Contains(const SwAnchoredObject & _rAnchoredObj) const59bool SwSortedObjs::Contains( const SwAnchoredObject& _rAnchoredObj ) const 60 { 61 return mpImpl->Contains( _rAnchoredObj ); 62 } 63 Update(SwAnchoredObject & _rAnchoredObj)64bool SwSortedObjs::Update( SwAnchoredObject& _rAnchoredObj ) 65 { 66 return mpImpl->Update( _rAnchoredObj ); 67 } 68 ListPosOf(const SwAnchoredObject & _rAnchoredObj) const69sal_uInt32 SwSortedObjs::ListPosOf( const SwAnchoredObject& _rAnchoredObj ) const 70 { 71 return mpImpl->ListPosOf( _rAnchoredObj ); 72 } 73