summaryrefslogtreecommitdiffstats
path: root/configmgr/source/valueparser.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/valueparser.hxx')
-rw-r--r--configmgr/source/valueparser.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/configmgr/source/valueparser.hxx b/configmgr/source/valueparser.hxx
index 1f0aef061324..1a0751807bd8 100644
--- a/configmgr/source/valueparser.hxx
+++ b/configmgr/source/valueparser.hxx
@@ -25,7 +25,6 @@
#include <set>
#include <vector>
-#include <boost/noncopyable.hpp>
#include <rtl/ref.hxx>
#include <rtl/string.hxx>
#include <rtl/ustring.hxx>
@@ -43,7 +42,7 @@ namespace configmgr {
class Node;
-class ValueParser: private boost::noncopyable {
+class ValueParser {
public:
ValueParser(int layer);
@@ -69,6 +68,9 @@ public:
OString separator_;
private:
+ ValueParser(const ValueParser&) SAL_DELETED_FUNCTION;
+ ValueParser& operator=(const ValueParser&) SAL_DELETED_FUNCTION;
+
template< typename T > com::sun::star::uno::Any convertItems();
enum State { STATE_TEXT, STATE_TEXT_UNICODE, STATE_IT, STATE_IT_UNICODE };