// Allen Kennedy Jr. // ThreadClass.h class ThreadClass { private: // private because it recasts the 'void*' to 'this' // And it doesn't like it if other objects do nasty things like that static void Running(void * duh); public: void Stop(); virtual void Start(); ThreadClass(); virtual ~ThreadClass(); private: bool go; };