ESyS-Particle  2.3
RunnablePy.h
Go to the documentation of this file.
1 // //
3 // Copyright (c) 2003-2014 by The University of Queensland //
4 // Centre for Geoscience Computing //
5 // http://earth.uq.edu.au/centre-geoscience-computing //
6 // //
7 // Primary Business: Brisbane, Queensland, Australia //
8 // Licensed under the Open Software License version 3.0 //
9 // http://www.opensource.org/licenses/osl-3.0.php //
10 // //
12 
13 
14 #include <boost/python/wrapper.hpp>
15 
16 #include "Foundation/Runnable.h"
17 
18 namespace esys
19 {
20  namespace lsm
21  {
22  class RunnablePy : public Runnable, public boost::python::wrapper<Runnable>
23  {
24  public:
25  virtual void run();
26 
27  void defaultRun();
28  };
29 
30  void exportRunnable();
31  }
32 }
void exportRunnable()
Definition: RunnablePy.cpp:44
virtual void run()
Definition: RunnablePy.cpp:22
Definition: CheckPointable.cpp:16
Definition: RunnablePy.h:22
Definition: Runnable.h:23
void defaultRun()
Definition: RunnablePy.cpp:35