00001 #ifndef __WEBTHREAD_H__ 00002 #define __WEBTHREAD_H__ 00003 #include "projet.h" 00004 00005 class WebThread : public Thread 00006 { 00007 public: 00008 WebThread () : Thread() {} 00009 void exec (void*); 00010 }; 00011 00012 #endif