00001 00010 namespace MyThreads { 00011 00017 class Thread 00018 { 00019 protected: 00025 virtual ThreadRet 00026 Run(void) = 0; 00027 }; 00028 00029 }