/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* Copyright (C) 2004, 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 dividendvanillaoption.hpp \brief Vanilla option on a single asset with discrete dividends */ #ifndef quantlib_dividend_vanilla_option_hpp #define quantlib_dividend_vanilla_option_hpp #include #include #include namespace QuantLib { //! Single-asset vanilla option (no barriers) with discrete dividends /*! \ingroup instruments */ class DividendVanillaOption : public VanillaOption { public: class arguments; class engine; DividendVanillaOption( const boost::shared_ptr&, const boost::shared_ptr& payoff, const boost::shared_ptr& exercise, const std::vector& dividendDates, const std::vector& dividends, const boost::shared_ptr& engine = boost::shared_ptr()); protected: void setupArguments(PricingEngine::arguments*) const; private: DividendSchedule cashFlow_; }; //! %Arguments for dividend vanilla option calculation class DividendVanillaOption::arguments : public VanillaOption::arguments { public: DividendSchedule cashFlow; arguments() {} void validate() const; }; //! %Dividend-vanilla-option %engine base class class DividendVanillaOption::engine : public GenericEngine {}; } #endif