evolutiondescription.hpp
Go to the documentation of this file.
1 /* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 
3 /*
4  Copyright (C) 2006, 2007 Ferdinando Ametrano
5  Copyright (C) 2007 Chiara Fornarola
6  Copyright (C) 2006, 2007 Marco Bianchetti
7  Copyright (C) 2006, 2007 Cristina Duminuco
8  Copyright (C) 2006, 2007 Giorgio Facchinetti
9 
10  This file is part of QuantLib, a free-software/open-source library
11  for financial quantitative analysts and developers - http://quantlib.org/
12 
13  QuantLib is free software: you can redistribute it and/or modify it
14  under the terms of the QuantLib license. You should have received a
15  copy of the license along with this program; if not, please email
16  <quantlib-dev@lists.sf.net>. The license is also available online at
17  <http://quantlib.org/license.shtml>.
18 
19  This program is distributed in the hope that it will be useful, but WITHOUT
20  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
21  FOR A PARTICULAR PURPOSE. See the license for more details.
22 */
23 
24 #ifndef qla_evolutiondescription_hpp
25 #define qla_evolutiondescription_hpp
26 
27 #include <oh/libraryobject.hpp>
28 
29 #include <ql/types.hpp>
30 
31 namespace QuantLib {
32  class EvolutionDescription;
33  class MarketModelMultiProduct;
34 }
35 
36 
37 namespace QuantLibAddin {
38 
39  class EvolutionDescription : public ObjectHandler::LibraryObject<QuantLib::EvolutionDescription> {
40  public:
42  const boost::shared_ptr<ObjectHandler::ValueObject>& properties,
43  const std::vector<QuantLib::Time>& rateTimes,
44  const std::vector<QuantLib::Time>& evolutionTimes,
45  bool permanent);
47  const boost::shared_ptr<ObjectHandler::ValueObject>& properties,
48  const QuantLib::EvolutionDescription& ev,
49  bool permanent);
51  const boost::shared_ptr<ObjectHandler::ValueObject>& properties,
52  const QuantLib::MarketModelMultiProduct& product,
53  bool permanent);
54  };
55 
56 }
57 
58 #endif
59 
Definition: evolutiondescription.hpp:39
Definition: abcd.hpp:38
Definition: abcd.hpp:30
EvolutionDescription(const boost::shared_ptr< ObjectHandler::ValueObject > &properties, const std::vector< QuantLib::Time > &rateTimes, const std::vector< QuantLib::Time > &evolutionTimes, bool permanent)