1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 #include <shellimpl.hxx>
22 SfxObjectShellArr_Impl::iterator
SfxObjectShellArr_Impl::begin()
24 return maData
.begin();
27 SfxObjectShellArr_Impl::iterator
SfxObjectShellArr_Impl::end()
32 const SfxObjectShell
* SfxObjectShellArr_Impl::operator[] ( size_t i
) const
37 SfxObjectShell
* SfxObjectShellArr_Impl::operator[] ( size_t i
)
42 void SfxObjectShellArr_Impl::erase( const iterator
& it
)
47 void SfxObjectShellArr_Impl::push_back( SfxObjectShell
* p
)
52 size_t SfxObjectShellArr_Impl::size() const
57 SfxViewFrameArr_Impl::iterator
SfxViewFrameArr_Impl::begin()
59 return maData
.begin();
62 SfxViewFrameArr_Impl::iterator
SfxViewFrameArr_Impl::end()
67 const SfxViewFrame
* SfxViewFrameArr_Impl::operator[] ( size_t i
) const
72 SfxViewFrame
* SfxViewFrameArr_Impl::operator[] ( size_t i
)
77 void SfxViewFrameArr_Impl::erase( const iterator
& it
)
82 void SfxViewFrameArr_Impl::push_back( SfxViewFrame
* p
)
87 size_t SfxViewFrameArr_Impl::size() const
92 SfxViewShellArr_Impl::iterator
SfxViewShellArr_Impl::begin()
94 return maData
.begin();
97 SfxViewShellArr_Impl::iterator
SfxViewShellArr_Impl::end()
102 const SfxViewShell
* SfxViewShellArr_Impl::operator[] ( size_t i
) const
107 SfxViewShell
* SfxViewShellArr_Impl::operator[] ( size_t i
)
112 void SfxViewShellArr_Impl::erase( const iterator
& it
)
117 void SfxViewShellArr_Impl::push_back( SfxViewShell
* p
)
122 size_t SfxViewShellArr_Impl::size() const
124 return maData
.size();
127 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */