/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* 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 simplecashflow.hpp \brief Predetermined cash flow */ #ifndef quantlib_simple_cash_flow_hpp #define quantlib_simple_cash_flow_hpp #include namespace QuantLib { //! Predetermined cash flow /*! This cash flow pays a predetermined amount at a given date. */ class SimpleCashFlow : public CashFlow { public: SimpleCashFlow(Real amount, const Date& date) : amount_(amount), date_(date) {} //! \name CashFlow interface //@{ Real amount() const { return amount_; } Date date() const { return date_; } //@} //! \name Visitability //@{ virtual void accept(AcyclicVisitor&); //@} private: Real amount_; Date date_; }; // inline definitions inline void SimpleCashFlow::accept(AcyclicVisitor& v) { Visitor* v1 = dynamic_cast*>(&v); if (v1 != 0) v1->visit(*this); else CashFlow::accept(v); } } #endif