Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

Runnable.h

Go to the documentation of this file.
00001 #ifndef _RUNNABLE_H_
00002 #define _RUNNABLE_H_
00003 
00004 /*
00005  * Abstract interface for threads to run code.  Specifies
00006  * entry point method for a new thread.  Used with the 
00007  * Thread class.
00008  */
00009 class Runnable {
00010 public:
00011   virtual void run() = 0;
00012   virtual ~Runnable() {};
00013 };
00014 
00015 #endif  // _RUNNABLE_H_

Generated on Mon Oct 7 09:33:31 2002 for Gaia by doxygen1.2.13.1 written by Dimitri van Heesch, © 1997-2001