ESyS-Particle  4.0.1
Runnable.h
1 
2 // //
3 // Copyright (c) 2003-2011 by The University of Queensland //
4 // Earth Systems Science Computational Centre (ESSCC) //
5 // http://www.uq.edu.au/esscc //
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 #ifndef ESYS_LSMRUNNABLE_H
15 #define ESYS_LSMRUNNABLE_H
16 
17 #include <boost/shared_ptr.hpp>
18 
19 namespace esys
20 {
21  namespace lsm
22  {
23  class Runnable
24  {
25  public:
26  typedef boost::shared_ptr<Runnable> Ptr;
27  virtual void run() = 0;
28  };
29  }
30 }
31 
32 #endif