summaryrefslogtreecommitdiff
path: root/binaryurp/source/incomingreply.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'binaryurp/source/incomingreply.hxx')
-rw-r--r--binaryurp/source/incomingreply.hxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/binaryurp/source/incomingreply.hxx b/binaryurp/source/incomingreply.hxx
index 9e85c1686a35..7584ded5c3fa 100644
--- a/binaryurp/source/incomingreply.hxx
+++ b/binaryurp/source/incomingreply.hxx
@@ -24,13 +24,15 @@
#include <vector>
-#include "boost/noncopyable.hpp"
-
#include "binaryany.hxx"
namespace binaryurp {
-struct IncomingReply: private boost::noncopyable {
+struct IncomingReply {
+private:
+ IncomingReply(const IncomingReply&) SAL_DELETED_FUNCTION;
+ IncomingReply& operator=(const IncomingReply&) SAL_DELETED_FUNCTION;
+public:
IncomingReply(
bool theException, BinaryAny const & theReturnValue,
std::vector< BinaryAny > const & theOutArguments):