BDE 4.14.0 Production release
|
Provide a parameterized day-count convention implementation.
This component provides a parameterized (template) implementation, bbldc::TerminatedDateRangeDayCountAdapter
, of the bbldc::DateRangeDayCount
protocol that allows for special handling of a termination date (e.g., maturity date). The template argument can be any type supporting the following two class methods.
The template class bbldc::TerminatedDateRangeDayCountAdapter
provides convenient support for run-time polymorphic choice of day-count conventions (via conventional use of a base-class pointer or reference) without having to implement each derived type explicitly. In this sense, bbldc::TerminatedDateRangeDayCountAdapter
adapts the various concrete "terminated" day-count convention classes (e.g., bbldc::TerminatedIsda30360Eom
) to a run-time binding mechanism.
The bbldc::DateRangeDayCount
protocol requires two methods, firstDate
and lastDate
, that define a date range for which calculations are valid, to reflect the valid range of, say, a calendar required for the computations. For "terminated" day-count implementations, the valid date range is identical to the range of bdlt::Date
.
This section illustrates intended use of this component.
This example shows the procedure for using bbldc::TerminatedDateRangeDayCountAdapter
to adapt the bbldc::TerminatedIsda30360Eom
day-count convention to the bbldc::DateRangeDayCount
protocol, and then the use of the day-count methods.
First, we define an instance of the adapted bbldc::TerminatedIsda30360Eom
day-count convention and obtain a reference to the bbldc::DateRangeDayCount
:
Then, create two bdlt::Date
variables, d1
and d2
, with which to use the day-count convention methods:
Now, use the base-class reference to compute the day count between the two dates:
Finally, use the base-class reference to compute the year fraction between the two dates: