[QuantLibAddin-cvs] QuantLibAddin/qlo schedule.cpp, 1.5, 1.6 schedule.hpp, 1.5, 1.6
Brought to you by:
ericehlers,
nando
|
From: Ferdinando A. <na...@us...> - 2006-10-03 18:24:03
|
Update of /cvsroot/quantlibaddin/QuantLibAddin/qlo In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv20314/qlo Modified Files: schedule.cpp schedule.hpp Log Message: deprecating old Schedule constructors... Index: schedule.hpp =================================================================== RCS file: /cvsroot/quantlibaddin/QuantLibAddin/qlo/schedule.hpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** schedule.hpp 5 Sep 2006 11:44:54 -0000 1.5 --- schedule.hpp 3 Oct 2006 18:23:59 -0000 1.6 *************** *** 26,37 **** class Schedule : public ObjHandler::LibraryObject<QuantLib::Schedule> { public: - Schedule(const QuantLib::Calendar& calendar, - const QuantLib::Date& startDate, - const QuantLib::Date& endDate, - QuantLib::Frequency frequency, - QuantLib::BusinessDayConvention convention, - const QuantLib::Date& stubDate, - bool startFromEnd, - bool longFinal); Schedule(const QuantLib::Date& effectiveDate, const QuantLib::Date& terminationDate, --- 26,29 ---- Index: schedule.cpp =================================================================== RCS file: /cvsroot/quantlibaddin/QuantLibAddin/qlo/schedule.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** schedule.cpp 5 Sep 2006 11:44:54 -0000 1.5 --- schedule.cpp 3 Oct 2006 18:23:59 -0000 1.6 *************** *** 26,50 **** Schedule::Schedule( - const QuantLib::Calendar& calendar, - const QuantLib::Date& startDate, - const QuantLib::Date& endDate, - QuantLib::Frequency frequency, - QuantLib::BusinessDayConvention convention, - const QuantLib::Date& stubDate, - bool startFromEnd, - bool longFinal) { - - libraryObject_ = boost::shared_ptr<QuantLib::Schedule>( - new QuantLib::Schedule(calendar, - startDate, - endDate, - frequency, - convention, - stubDate, - startFromEnd, - longFinal)); - } - - Schedule::Schedule( const QuantLib::Date& effectiveDate, const QuantLib::Date& terminationDate, --- 26,29 ---- |