accountingengines.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_accountingengines_hpp
25 #define qla_accountingengines_hpp
26 
27 #include <oh/libraryobject.hpp>
28 
29 #include <ql/types.hpp>
30 
31 namespace QuantLib {
32  class AccountingEngine;
33  class MarketModelEvolver;
34  class MarketModelMultiProduct;
35 
36  template <class T>
37  class Clone;
38 }
39 
40 namespace QuantLibAddin {
41 
42  class AccountingEngine : public ObjectHandler::LibraryObject<
43  QuantLib::AccountingEngine> {
44  public:
46  const boost::shared_ptr<ObjectHandler::ValueObject>& properties,
47  const boost::shared_ptr<QuantLib::MarketModelEvolver>& evolver,
49  QuantLib::Real initialNumeraireValue,
50  bool permanent);
51  };
52 
53  }
54 
55 #endif
56 
Definition: accountingengines.hpp:42
Definition: accountingengines.hpp:37
Definition: abcd.hpp:38
AccountingEngine(const boost::shared_ptr< ObjectHandler::ValueObject > &properties, const boost::shared_ptr< QuantLib::MarketModelEvolver > &evolver, const QuantLib::Clone< QuantLib::MarketModelMultiProduct > &product, QuantLib::Real initialNumeraireValue, bool permanent)
Definition: abcd.hpp:30