summaryrefslogtreecommitdiff
path: root/binaryurp/source/unmarshal.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'binaryurp/source/unmarshal.hxx')
-rw-r--r--binaryurp/source/unmarshal.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/binaryurp/source/unmarshal.hxx b/binaryurp/source/unmarshal.hxx
index 8494731ec6c3..3c523aa3f637 100644
--- a/binaryurp/source/unmarshal.hxx
+++ b/binaryurp/source/unmarshal.hxx
@@ -24,7 +24,6 @@
#include <vector>
-#include "boost/noncopyable.hpp"
#include "com/sun/star/uno/Sequence.hxx"
#include "rtl/ref.hxx"
#include "sal/types.h"
@@ -41,7 +40,7 @@ namespace com { namespace sun { namespace star { namespace uno {
namespace binaryurp {
-class Unmarshal: private boost::noncopyable {
+class Unmarshal {
public:
Unmarshal(
rtl::Reference< Bridge > const & bridge, ReaderState & state,
@@ -66,6 +65,9 @@ public:
void done() const;
private:
+ Unmarshal(const Unmarshal&) SAL_DELETED_FUNCTION;
+ Unmarshal& operator=(const Unmarshal&) SAL_DELETED_FUNCTION;
+
void check(sal_Int32 size) const;
sal_uInt32 readCompressed();