ESyS-Particle  2.3.4
RunnablePy.h
Go to the documentation of this file.
1 // //
3 // Copyright (c) 2003-2017 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.apache.org/licenses/LICENSE-2.0 //
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 }
esys::lsm::RunnablePy::run
virtual void run()
Definition: RunnablePy.cpp:22
RunnablePy.h
Runnable.h
esys::lsm::exportRunnable
void exportRunnable()
Definition: RunnablePy.cpp:44
esys::lsm::RunnablePy
Definition: RunnablePy.h:23
esys::lsm::Runnable
Definition: Runnable.h:24
esys
Definition: CheckPointable.cpp:17
esys::lsm::Runnable::run
virtual void run()=0
esys::lsm::RunnablePy::defaultRun
void defaultRun()
Definition: RunnablePy.cpp:35