summaryrefslogtreecommitdiff
path: root/configmgr/source/modifications.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/modifications.hxx')
-rw-r--r--configmgr/source/modifications.hxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/configmgr/source/modifications.hxx b/configmgr/source/modifications.hxx
index 0521da5ae9ab..7fac66758403 100644
--- a/configmgr/source/modifications.hxx
+++ b/configmgr/source/modifications.hxx
@@ -22,18 +22,17 @@
#include <sal/config.h>
-#include <boost/unordered_map.hpp>
-#include <boost/noncopyable.hpp>
+#include <unordered_map>
#include "path.hxx"
namespace configmgr {
-class Modifications: private boost::noncopyable {
+class Modifications {
public:
struct Node {
- typedef boost::unordered_map<OUString, Node, OUStringHash> Children;
+ typedef std::unordered_map<OUString, Node, OUStringHash> Children;
Children children;
};
@@ -49,6 +48,9 @@ public:
Node const & getRoot() const { return root_;}
private:
+ Modifications(const Modifications&) SAL_DELETED_FUNCTION;
+ Modifications& operator=(const Modifications&) SAL_DELETED_FUNCTION;
+
Node root_;
};