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 2020 2011-06-16 20:46:16Z andreasw $
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  };
66 
67 } // namespace Ipopt
68 
69 #endif