QuantLib
: a free/open-source library for quantitative finance
fully annotated source code - version 1.34
Loading...
Searching...
No Matches
ql
time
calendars
weekendsonly.cpp
Go to the documentation of this file.
1
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
3
/*
4
Copyright (C) 2009 StatPro Italia srl
5
6
This file is part of QuantLib, a free-software/open-source library
7
for financial quantitative analysts and developers - http://quantlib.org/
8
9
QuantLib is free software: you can redistribute it and/or modify it
10
under the terms of the QuantLib license. You should have received a
11
copy of the license along with this program; if not, please email
12
<quantlib-dev@lists.sf.net>. The license is also available online at
13
<http://quantlib.org/license.shtml>.
14
15
This program is distributed in the hope that it will be useful, but WITHOUT
16
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17
FOR A PARTICULAR PURPOSE. See the license for more details.
18
*/
19
20
#include <
ql/time/calendars/weekendsonly.hpp
>
21
22
namespace
QuantLib
{
23
24
WeekendsOnly::WeekendsOnly
() {
25
// all calendar instances share the same implementation instance
26
static
ext::shared_ptr<Calendar::Impl> impl(
new
WeekendsOnly::Impl
);
27
impl_
= impl;
28
}
29
30
bool
WeekendsOnly::Impl::isBusinessDay
(
const
Date
& date)
const
{
31
return
!
isWeekend
(date.
weekday
());
32
}
33
34
}
35
QuantLib::Calendar::WesternImpl::isWeekend
bool isWeekend(Weekday) const override
Definition:
calendar.cpp:195
QuantLib::Calendar::impl_
ext::shared_ptr< Impl > impl_
Definition:
calendar.hpp:72
QuantLib::Date
Concrete date class.
Definition:
date.hpp:125
QuantLib::Date::weekday
Weekday weekday() const
Definition:
date.hpp:395
QuantLib::WeekendsOnly::Impl
Definition:
weekendsonly.hpp:40
QuantLib::WeekendsOnly::Impl::isBusinessDay
bool isBusinessDay(const Date &) const override
Definition:
weekendsonly.cpp:30
QuantLib::WeekendsOnly::WeekendsOnly
WeekendsOnly()
Definition:
weekendsonly.cpp:24
QuantLib
Definition:
any.hpp:35
weekendsonly.hpp
Weekends-only calendar.
Generated by
Doxygen
1.9.5