LibreOffice Module svl (master) 1
currencytable.cxx
Go to the documentation of this file.
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 <svl/currencytable.hxx>
11
13{
14 return maData.begin();
15}
16
17NfCurrencyEntry& NfCurrencyTable::operator[] ( size_t i )
18{
19 return maData[i];
20}
21
22const NfCurrencyEntry& NfCurrencyTable::operator[] ( size_t i ) const
23{
24 return maData[i];
25}
26
28{
29 return maData.size();
30}
31
32void NfCurrencyTable::insert(const iterator& it, NfCurrencyEntry p)
33{
34 maData.insert(it, std::move(p));
35}
36
37/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
void insert(const iterator &it, NfCurrencyEntry p)
NfCurrencyEntry & operator[](size_t i)
size_t size() const
iterator begin()
DataType::iterator iterator
void * p
int i