Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members

ODESolverWrapper.h

Go to the documentation of this file.
00001 // Copyright (C) 2003 Johan Hoffman and Anders Logg.
00002 // Licensed under the GNU GPL Version 2.
00003 
00004 #ifndef __ODE_SOLVER_WRAPPER_H
00005 #define __ODE_SOLVER_WRAPPER_H
00006 
00007 #include <dolfin/Solver.h>
00008 
00009 namespace dolfin {
00010   
00028   
00029   class ODESolverWrapper : public Solver {
00030   public:
00031     
00032     ODESolverWrapper(ODE& ode);
00033     
00034     const char* description();
00035     void solve();
00036     
00037   private:
00038 
00039     ODESolver solver;
00040 
00041   };
00042 
00043 }
00044 
00045 #endif


Documentation automatically generated with Doxygen on 10 Sep 2004.