marketmodelevolvers.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_marketmodelevolvers_hpp
25 #define qla_marketmodelevolvers_hpp
26 
27 #include <oh/libraryobject.hpp>
28 
29 #include <ql/types.hpp>
30 
31 namespace QuantLib {
32  class MarketModelEvolver;
33  class BrownianGeneratorFactory;
34  class MarketModel;
35 }
36 
37 namespace QuantLibAddin {
38 
39  OH_LIB_CLASS(MarketModelEvolver, QuantLib::MarketModelEvolver);
40 
41  class LogNormalFwdRatePc : public MarketModelEvolver {
42  public:
43  LogNormalFwdRatePc(const boost::shared_ptr<ObjectHandler::ValueObject>& properties,
44  const boost::shared_ptr<QuantLib::MarketModel>&,
45  const QuantLib::BrownianGeneratorFactory&,
46  const std::vector<QuantLib::Size>& numeraires,
47  bool permanent);
48  };
49 
50  class LogNormalFwdRateIpc : public MarketModelEvolver {
51  public:
52  LogNormalFwdRateIpc(const boost::shared_ptr<ObjectHandler::ValueObject>& properties,
53  const boost::shared_ptr<QuantLib::MarketModel>&,
54  const QuantLib::BrownianGeneratorFactory&,
55  const std::vector<QuantLib::Size>& numeraires,
56  bool permanent);
57  };
58  class NormalFwdRatePc : public MarketModelEvolver {
59  public:
60  NormalFwdRatePc(const boost::shared_ptr<ObjectHandler::ValueObject>& properties,
61  const boost::shared_ptr<QuantLib::MarketModel>&,
62  const QuantLib::BrownianGeneratorFactory&,
63  const std::vector<QuantLib::Size>& numeraires,
64  bool permanent);
65  };
66 
67 }
68 
69 #endif
70 
Definition: marketmodelevolvers.hpp:58
LogNormalFwdRateIpc(const boost::shared_ptr< ObjectHandler::ValueObject > &properties, const boost::shared_ptr< QuantLib::MarketModel > &, const QuantLib::BrownianGeneratorFactory &, const std::vector< QuantLib::Size > &numeraires, bool permanent)
LogNormalFwdRatePc(const boost::shared_ptr< ObjectHandler::ValueObject > &properties, const boost::shared_ptr< QuantLib::MarketModel > &, const QuantLib::BrownianGeneratorFactory &, const std::vector< QuantLib::Size > &numeraires, bool permanent)
Definition: marketmodelevolvers.hpp:50
OH_LIB_CLASS(AlphaForm, QuantLib::AlphaForm)
NormalFwdRatePc(const boost::shared_ptr< ObjectHandler::ValueObject > &properties, const boost::shared_ptr< QuantLib::MarketModel > &, const QuantLib::BrownianGeneratorFactory &, const std::vector< QuantLib::Size > &numeraires, bool permanent)
Definition: abcd.hpp:38
Definition: abcd.hpp:30
Definition: marketmodelevolvers.hpp:41