summaryrefslogtreecommitdiff
path: root/binaryurp/source/readerstate.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'binaryurp/source/readerstate.hxx')
-rw-r--r--binaryurp/source/readerstate.hxx11
1 files changed, 7 insertions, 4 deletions
diff --git a/binaryurp/source/readerstate.hxx b/binaryurp/source/readerstate.hxx
index 21ba8503c1d5..1ce1d5a4b783 100644
--- a/binaryurp/source/readerstate.hxx
+++ b/binaryurp/source/readerstate.hxx
@@ -22,7 +22,6 @@
#include "sal/config.h"
-#include "boost/noncopyable.hpp"
#include "rtl/byteseq.hxx"
#include "rtl/ustring.hxx"
#include "typelib/typedescription.hxx"
@@ -31,11 +30,15 @@
namespace binaryurp {
-struct ReaderState: private boost::noncopyable {
- com::sun::star::uno::TypeDescription typeCache[cache::size];
+struct ReaderState {
+private:
+ ReaderState(const ReaderState&) SAL_DELETED_FUNCTION;
+ ReaderState& operator=(const ReaderState&) SAL_DELETED_FUNCTION;
+public:
+ ReaderState() {}
+ com::sun::star::uno::TypeDescription typeCache[cache::size];
OUString oidCache[cache::size];
-
rtl::ByteSequence tidCache[cache::size];
};