summaryrefslogtreecommitdiff
path: root/configmgr/source/data.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/data.hxx')
-rw-r--r--configmgr/source/data.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/configmgr/source/data.hxx b/configmgr/source/data.hxx
index 17a0e1dec879..681bf55aa261 100644
--- a/configmgr/source/data.hxx
+++ b/configmgr/source/data.hxx
@@ -26,7 +26,6 @@
#include "config_map.hxx"
#include <vector>
-#include <boost/noncopyable.hpp>
#include <rtl/ref.hxx>
#include <rtl/ustring.hxx>
#include <sal/types.h>
@@ -41,7 +40,7 @@ namespace configmgr {
class Node;
-struct Data: private boost::noncopyable {
+struct Data {
enum { NO_LAYER = INT_MAX };
struct ExtensionXcu: public salhelper::SimpleReferenceObject {
@@ -86,6 +85,9 @@ struct Data: private boost::noncopyable {
OUString const & url);
private:
+ Data(const Data&) SAL_DELETED_FUNCTION;
+ Data& operator=(const Data&) SAL_DELETED_FUNCTION;
+
typedef config_map< rtl::Reference< ExtensionXcu > >
ExtensionXcuAdditions;