Kaydet (Commit) 48fd93ec authored tarafından Matúš Kukan's avatar Matúš Kukan

Make comphelper::ThreadPool explicitly noncopyable

Change-Id: Ie57d0194418dd17a4c83e2859d6a85129c4f95e6
üst 966daa8e
......@@ -15,6 +15,7 @@
#include <osl/mutex.hxx>
#include <osl/conditn.hxx>
#include <rtl/ref.hxx>
#include <boost/noncopyable.hpp>
#include <vector>
#include <comphelper/comphelperdllapi.h>
......@@ -29,7 +30,7 @@ public:
};
/// A very basic thread pool implementation
class COMPHELPER_DLLPUBLIC ThreadPool
class COMPHELPER_DLLPUBLIC ThreadPool: private boost::noncopyable
{
public:
/// returns a pointer to a shared pool with optimal thread
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment