Ipopt  3.11.4
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
IpOrigIterationOutput.hpp
Go to the documentation of this file.
1 // Copyright (C) 2004, 2011 International Business Machines and others.
2 // All Rights Reserved.
3 // This code is published under the Eclipse Public License.
4 //
5 // $Id: IpOrigIterationOutput.hpp 2167 2013-03-08 11:15:38Z stefan $
6 //
7 // Authors: Andreas Waechter, Carl Laird IBM 2004-09-27
8 
9 #ifndef __IPORIGITERATIONOUTPUT_HPP__
10 #define __IPORIGITERATIONOUTPUT_HPP__
11 
12 #include "IpIterationOutput.hpp"
13 
14 namespace Ipopt
15 {
16 
20  {
21  public:
26 
28  virtual ~OrigIterationOutput();
30 
32  virtual bool InitializeImpl(const OptionsList& options,
33  const std::string& prefix);
34 
38  virtual void WriteOutput();
39 
42  static void RegisterOptions(SmartPtr<RegisteredOptions> roptions);
44 
45  private:
54 
56  void operator=(const OrigIterationOutput&);
58 
62 
65 
70  };
71 
72 } // namespace Ipopt
73 
74 #endif