Definition at line 61 of file ireland.hpp.
◆ name()
std::string name |
( |
| ) |
const |
|
override |
◆ isBusinessDay()
bool isBusinessDay |
( |
const QuantLib::Date & |
| ) |
const |
|
override |
Definition at line 72 of file ireland.cpp.
72 {
73 Weekday w = date.weekday();
74 Day d = date.dayOfMonth();
75 Month m = date.month();
77 (m == December && (d == 27 || (d == 29 && (w == Mon || w == Tue || w == Wed)) || (d == 28 && w == Wed))))
78 return false;
79 else
80 return true;
81}
bool isBusinessDay(const QuantLib::Date &) const override