ESyS-Particle  4.0.1
Runnable.h
00001 
00002 //                                                         //
00003 // Copyright (c) 2003-2011 by The University of Queensland //
00004 // Earth Systems Science Computational Centre (ESSCC)      //
00005 // http://www.uq.edu.au/esscc                              //
00006 //                                                         //
00007 // Primary Business: Brisbane, Queensland, Australia       //
00008 // Licensed under the Open Software License version 3.0    //
00009 // http://www.opensource.org/licenses/osl-3.0.php          //
00010 //                                                         //
00012 
00013 
00014 #ifndef ESYS_LSMRUNNABLE_H
00015 #define ESYS_LSMRUNNABLE_H
00016 
00017 #include <boost/shared_ptr.hpp>
00018 
00019 namespace esys
00020 {
00021   namespace lsm
00022   {
00023     class Runnable
00024     {
00025     public:
00026       typedef boost::shared_ptr<Runnable> Ptr;
00027       virtual void run() = 0;
00028     };
00029   }
00030 }
00031 
00032 #endif