//////////////////////////////////////////////////////////////////////// // thread.cpp : Implemntation of the class CThread // // $Log: thread.cpp,v $ // Revision 1.1 1997/06/13 18:17:02 nettleto // Initial revision // // #include "thread.h" void * Start (void *arg) { ((CThread *) arg)->Body (); return NULL; }