QuantLib: a free/open-source library for quantitative finance
Fully annotated sources - version 1.32
Loading...
Searching...
No Matches
america.hpp
1/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
3/*
4 Copyright (C) 2004, 2005, 2008 StatPro Italia srl
5 Copyright (C) 2016 Quaternion Risk Management Ltd
6
7 This file is part of QuantLib, a free-software/open-source library
8 for financial quantitative analysts and developers - http://quantlib.org/
9
10 QuantLib is free software: you can redistribute it and/or modify it
11 under the terms of the QuantLib license. You should have received a
12 copy of the license along with this program; if not, please email
13 <quantlib-dev@lists.sf.net>. The license is also available online at
14 <http://quantlib.org/license.shtml>.
15
16 This program is distributed in the hope that it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18 FOR A PARTICULAR PURPOSE. See the license for more details.
19*/
20
28#ifndef quantlib_american_currencies_hpp
29#define quantlib_american_currencies_hpp
30
31#include <ql/currency.hpp>
32
33#if defined(QL_PATCH_MSVC)
34#pragma warning(push)
35#pragma warning(disable:4819)
36#endif
37
38namespace QuantLib {
39
41
46 class ARSCurrency : public Currency {
47 public:
49 };
50
52
57 class BRLCurrency : public Currency {
58 public:
60 };
61
63
68 class CADCurrency : public Currency {
69 public:
71 };
72
74
79 class CLPCurrency : public Currency {
80 public:
82 };
83
85
90 class COPCurrency : public Currency {
91 public:
93 };
94
96
101 class MXNCurrency : public Currency {
102 public:
103 MXNCurrency();
104 };
105
107
112 class PENCurrency : public Currency {
113 public:
114 PENCurrency();
115 };
116
118
126 class PEICurrency : public Currency {
127 public:
128 PEICurrency();
129 };
130
132
140 class PEHCurrency : public Currency {
141 public:
142 PEHCurrency();
143 };
144
146
151 class TTDCurrency : public Currency {
152 public:
153 TTDCurrency();
154 };
155
157
162 class USDCurrency : public Currency {
163 public:
164 USDCurrency();
165 };
166
168
173 class VEBCurrency : public Currency {
174 public:
175 VEBCurrency();
176 };
178
182 class MXVCurrency : public Currency {
183 public:
184 MXVCurrency();
185 };
186
188
192 class COUCurrency : public Currency {
193 public:
194 COUCurrency();
195 };
196
198
202 class CLFCurrency : public Currency {
203 public:
204 CLFCurrency();
205 };
206
208
212 class UYUCurrency : public Currency {
213 public:
214 UYUCurrency();
215 };
216
217}
218
219#if defined(QL_PATCH_MSVC)
220#pragma warning(pop)
221#endif
222
223#endif
Argentinian peso.
Definition: america.hpp:46
Brazilian real.
Definition: america.hpp:57
Canadian dollar.
Definition: america.hpp:68
Unidad de Fomento (funds code)
Definition: america.hpp:202
Chilean peso.
Definition: america.hpp:79
Colombian peso.
Definition: america.hpp:90
Unidad de Valor Real.
Definition: america.hpp:192
Currency specification
Definition: currency.hpp:36
Mexican peso.
Definition: america.hpp:101
Mexican Unidad de Inversion.
Definition: america.hpp:182
Peruvian sol.
Definition: america.hpp:140
Peruvian inti.
Definition: america.hpp:126
Peruvian nuevo sol.
Definition: america.hpp:112
Trinidad & Tobago dollar.
Definition: america.hpp:151
U.S. dollar.
Definition: america.hpp:162
Uruguayan peso.
Definition: america.hpp:212
Venezuelan bolivar.
Definition: america.hpp:173
Definition: any.hpp:35