Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : */
9 :
10 : #include <reordermap.hxx>
11 :
12 : namespace sc {
13 :
14 116 : ColRowReorderMapType::const_iterator ColRowReorderMapType::end() const
15 : {
16 116 : return maData.end();
17 : }
18 :
19 : std::pair<ColRowReorderMapType::iterator, bool>
20 152 : ColRowReorderMapType::insert( ColRowReorderMapType::value_type const& val )
21 : {
22 152 : return maData.insert(val);
23 : }
24 :
25 : ColRowReorderMapType::const_iterator
26 116 : ColRowReorderMapType::find( DataType::key_type const& key ) const
27 : {
28 116 : return maData.find(key);
29 : }
30 :
31 : }
32 :
33 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|