00001 #ifndef RUNNABLE_H_ 00002 #define RUNNABLE_H_ 00003 00004 namespace CVD { 00006 class Runnable 00007 { 00008 public: 00010 virtual void run()=0; 00011 virtual ~Runnable(){}; 00012 }; 00013 00014 } 00015 #endif