Client thread test version. Ready to connect.

This commit is contained in:
lotodore
2007-02-17 23:44:45 +00:00
parent 6eb192f846
commit 592863ecf5
11 changed files with 478 additions and 23 deletions
+8
View File
@@ -18,9 +18,16 @@
***************************************************************************/
/* Base class for threads (used by network client/server). */
#ifndef _THREAD_H_
#define _THREAD_H_
#include <boost/thread.hpp>
#include <boost/shared_ptr.hpp>
#ifndef NANOSECONDS_PER_SECOND
#define NANOSECONDS_PER_SECOND 1000000000
#endif
class Thread
{
public:
@@ -71,3 +78,4 @@ private:
friend class ThreadStarter;
};
#endif