extrapolateLogOfDF.hpp
Go to the documentation of this file.
1 #ifndef JULIAN_EXTRAPOLATELOGOFDF_HPP
2 #define JULIAN_EXTRAPOLATELOGOFDF_HPP
3 
5 
6 namespace julian {
7 namespace ir {
25  public:
27  virtual double operator()(const Calendar&, const InterestRate&, const Date& , const std::vector<Date>&,const std::vector<double>&,const Date&) const;
28  virtual ExtrapolateLogOfDF* clone() const;
29  ~ExtrapolateLogOfDF(){};
30  virtual std::string info() const;
31  friend class boost::serialization::access;
32  private:
35  template<class Archive>
36  void serialize(Archive & , const unsigned int) {
37  boost::serialization::base_object<Extrapolator>(*this);
38  }
39  };
40 } // namespace ir
41 } // namespace julian
42 #endif
virtual ExtrapolateLogOfDF * clone() const
virtual copy constructor
Definition: extrapolateLogOfDF.cpp:33
void serialize(Archive &, const unsigned int)
interface used by Boost serialization library
Definition: extrapolateLogOfDF.hpp:36
virtual double operator()(const Calendar &, const InterestRate &, const Date &, const std::vector< Date > &, const std::vector< double > &, const Date &) const
method extrapolates the curve
Definition: extrapolateLogOfDF.cpp:13
Class extrapolates the interest rate curve.
Definition: extrapolateLogOfDF.hpp:24
Definition: cadHoliday.cpp:3
Class implements calendar object.
Definition: calendar.hpp:30
File contains definition of interface of interest rate curve extrapolator.
Class implements a date object.
Definition: date.hpp:27
The class implements the concept of interest rate.
Definition: interestRate.hpp:25
ExtrapolateLogOfDF()
default constructor
Definition: extrapolateLogOfDF.cpp:9
virtual std::string info() const
returns the name of class
Definition: extrapolateLogOfDF.cpp:39
Class implements the interface of interest rate curve interpolator.
Definition: irCurveExtrapolator.hpp:24