summaryrefslogtreecommitdiff
path: root/binaryurp/source/outgoingrequests.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'binaryurp/source/outgoingrequests.hxx')
-rw-r--r--binaryurp/source/outgoingrequests.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/binaryurp/source/outgoingrequests.hxx b/binaryurp/source/outgoingrequests.hxx
index 564757256d7a..e3c92bd00b91 100644
--- a/binaryurp/source/outgoingrequests.hxx
+++ b/binaryurp/source/outgoingrequests.hxx
@@ -25,7 +25,6 @@
#include <map>
#include <vector>
-#include "boost/noncopyable.hpp"
#include "osl/mutex.hxx"
namespace binaryurp { struct OutgoingRequest; }
@@ -33,7 +32,7 @@ namespace rtl { class ByteSequence; }
namespace binaryurp {
-class OutgoingRequests: private boost::noncopyable {
+class OutgoingRequests {
public:
OutgoingRequests();
@@ -46,6 +45,9 @@ public:
void pop(rtl::ByteSequence const & tid) throw ();
private:
+ OutgoingRequests(const OutgoingRequests&) SAL_DELETED_FUNCTION;
+ OutgoingRequests& operator=(const OutgoingRequests&) SAL_DELETED_FUNCTION;
+
typedef std::map< rtl::ByteSequence, std::vector< OutgoingRequest > > Map;
osl::Mutex mutex_;