diff options
Diffstat (limited to 'configmgr/source/node.hxx')
-rw-r--r-- | configmgr/source/node.hxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/configmgr/source/node.hxx b/configmgr/source/node.hxx index 68664e870e35..cce8e3d4abb3 100644 --- a/configmgr/source/node.hxx +++ b/configmgr/source/node.hxx @@ -27,8 +27,6 @@ #include <salhelper/simplereferenceobject.hxx> #include <xmlreader/span.hxx> -#include "type.hxx" - namespace configmgr { class NodeMap; @@ -58,9 +56,6 @@ public: void setDescription(OUString const& description) { description_ = description; }; OUString getDescription() { return description_; } - void setType(Type const& type) { type_ = type; }; - Type getType() { return type_; } - rtl::Reference< Node > getMember(OUString const & name); protected: @@ -72,7 +67,6 @@ private: int layer_; int finalized_; OUString description_; - Type type_ = TYPE_ERROR; }; } |