/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* Copyright (C) 2000, 2001, 2002, 2003 RiskMap srl Copyright (C) 2003, 2004, 2005, 2006, 2007 StatPro Italia srl This file is part of QuantLib, a free-software/open-source library for financial quantitative analysts and developers - http://quantlib.org/ QuantLib is free software: you can redistribute it and/or modify it under the terms of the QuantLib license. You should have received a copy of the license along with this program; if not, please email . The license is also available online at . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the license for more details. */ /*! \file iborindex.hpp \brief base class for Inter-Bank-Offered-Rate indexes */ #ifndef quantlib_ibor_index_hpp #define quantlib_ibor_index_hpp #include #include namespace QuantLib { //! base class for Inter-Bank-Offered-Rate indexes (e.g. %Libor, etc.) /*! \todo add methods returning InterestRate */ class IborIndex : public InterestRateIndex { public: IborIndex(const std::string& familyName, const Period& tenor, Natural settlementDays, const Currency& currency, const Calendar& fixingCalendar, BusinessDayConvention convention, bool endOfMonth, const DayCounter& dayCounter, const Handle& h = Handle()); //! \name InterestRateIndex interface //@{ Rate forecastFixing(const Date& fixingDate) const; Handle termStructure() const; //@} //! \name Inspectors //@{ BusinessDayConvention businessDayConvention() const; bool endOfMonth() const { return endOfMonth_; } //@} //! \name Date calculations //@{ Date maturityDate(const Date& valueDate) const; // @} protected: BusinessDayConvention convention_; Handle termStructure_; bool endOfMonth_; }; // inline definitions inline BusinessDayConvention IborIndex::businessDayConvention() const { return convention_; } inline Handle IborIndex::termStructure() const { return termStructure_; } } #endif