Logo
Fully annotated reference manual - version 1.8.12
Loading...
Searching...
No Matches
region.hpp
Go to the documentation of this file.
1/*
2 Copyright (C) 2018 Quaternion Risk Management Ltd
3 All rights reserved.
4
5 This file is part of ORE, a free-software/open-source library
6 for transparent pricing and risk analysis - http://opensourcerisk.org
7
8 ORE is free software: you can redistribute it and/or modify it
9 under the terms of the Modified BSD License. You should have received a
10 copy of the license along with this program.
11 The license is also available online at <http://opensourcerisk.org>
12
13 This program is distributed on the basis that it will form a useful
14 contribution to risk analytics and model standardisation, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the license for more details.
17*/
18
19/*! \file qle/indexes/region.hpp
20 \brief Region, i.e. geographical area, specification
21*/
22
23#ifndef quantext_region_hpp
24#define quantext_region_hpp
25
26#include <ql/indexes/region.hpp>
27
28namespace QuantExt {
29
30//! Sweden as geographical/economic region
31class SwedenRegion : public QuantLib::Region {
32public:
34};
35
36//! Denmark as geographical/economic region
37class DenmarkRegion : public QuantLib::Region {
38public:
40};
41
42//! Canada as geographical/economic region
43class CanadaRegion : public QuantLib::Region {
44public:
46};
47
48//! Spain as geographical/economic region
49class SpainRegion : public QuantLib::Region {
50public:
52};
53
54//! Germany as geographical/economic region
55class GermanyRegion : public QuantLib::Region {
56 public:
58};
59
60//! Belgium as geographical/economic region
61class BelgiumRegion : public QuantLib::Region {
62public:
64};
65
66} // namespace QuantExt
67
68#endif
Belgium as geographical/economic region.
Definition: region.hpp:61
Canada as geographical/economic region.
Definition: region.hpp:43
Denmark as geographical/economic region.
Definition: region.hpp:37
Germany as geographical/economic region.
Definition: region.hpp:55
Spain as geographical/economic region.
Definition: region.hpp:49
Sweden as geographical/economic region.
Definition: region.hpp:31