diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-02-15 20:54:22 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-02-16 12:54:45 +0000 |
commit | 01a8bda416d1598f5486f95b6a57d61ff09873ed (patch) | |
tree | c37934d13308426d22599f63bf8666305a6b1f80 /binaryurp/source/unmarshal.hxx | |
parent | a1ceacc17e3f30d5e9c06b3218ad8ec26ca2f1b9 (diff) |
boost::noncopyable->'= delete'
Change-Id: If0f898a1e912fcd2095d8ba88b2b8046596e16ea
Diffstat (limited to 'binaryurp/source/unmarshal.hxx')
-rw-r--r-- | binaryurp/source/unmarshal.hxx | 6 |
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(); |