Prevent direct instantation of ThreadManager

Reviewed By: marc


git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664967 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Slee 2007-02-01 23:05:38 +00:00
parent 739dbe55ae
commit 8cbda85be5

View File

@ -36,9 +36,10 @@ class ThreadManager;
*/
class ThreadManager {
public:
protected:
ThreadManager() {}
public:
virtual ~ThreadManager() {}
/**