/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* Copyright (C) 2006 Ferdinando Ametrano Copyright (C) 2000, 2001, 2002, 2003 RiskMap 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 swap.hpp \brief Interest rate swap */ #ifndef quantlib_swap_hpp #define quantlib_swap_hpp #include #include #include namespace QuantLib { class YieldTermStructure; //! Interest rate swap /*! The cash flows belonging to the first leg are paid; the ones belonging to the second leg are received. \ingroup instruments */ class Swap : public Instrument { public: /*! The cash flows belonging to the first leg are paid; the ones belonging to the second leg are received. */ Swap(const Handle& termStructure, const Leg& firstLeg, const Leg& secondLeg); /*! Multi leg constructor. */ Swap(const Handle& termStructure, const std::vector& legs, const std::vector& payer); //! \name Instrument interface //@{ bool isExpired() const; //@} //! \name Additional interface //@{ Date startDate() const; Date maturityDate() const; Real legBPS(Size j) const { QL_REQUIRE(j& termStructure() const { return termStructure_; } //@} protected: // methods void setupExpired() const; void performCalculations() const; // data members Handle termStructure_; std::vector legs_; std::vector payer_; mutable std::vector legNPV_; mutable std::vector legBPS_; }; } #endif