/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* Copyright (C) 2006 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 compositeinstrument.hpp \brief Composite instrument class */ #ifndef quantlib_composite_instrument_hpp #define quantlib_composite_instrument_hpp #include #include #include namespace QuantLib { //! %Composite instrument /*! This instrument is an aggregate of other instruments. Its NPV is the sum of the NPVs of its components, each possibly multiplied by a given factor. Example: \link Replication.cpp static replication of a down-and-out barrier option \endlink \warning Methods that drive the calculation directly (such as recalculate(), freeze() and others) might not work correctly. \ingroup instruments */ class CompositeInstrument : public Instrument { typedef std::pair, Real> component; typedef std::list::iterator iterator; typedef std::list::const_iterator const_iterator; public: //! adds an instrument to the composite void add(const boost::shared_ptr& instrument, Real multiplier = 1.0); //! shorts an instrument from the composite void subtract(const boost::shared_ptr& instrument, Real multiplier = 1.0); //! \name Instrument interface //@{ bool isExpired() const; protected: void performCalculations() const; //@} private: std::list components_; }; } #endif