summaryrefslogtreecommitdiff
path: root/source/dphierarchy.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'source/dphierarchy.cxx')
-rw-r--r--source/dphierarchy.cxx36
1 files changed, 36 insertions, 0 deletions
diff --git a/source/dphierarchy.cxx b/source/dphierarchy.cxx
new file mode 100644
index 0000000..fd30a5b
--- /dev/null
+++ b/source/dphierarchy.cxx
@@ -0,0 +1,36 @@
+
+#include "dphierarchy.hxx"
+
+using ::com::sun::star::container::XNameAccess;
+using ::com::sun::star::uno::RuntimeException;
+using ::com::sun::star::uno::Reference;
+using ::rtl::OUString;
+
+namespace dpsource {
+
+DPHierarchy::DPHierarchy()
+{
+}
+
+DPHierarchy::~DPHierarchy()
+{
+}
+
+// XNamed
+
+OUString DPHierarchy::getName() throw (RuntimeException)
+{
+ return maName;
+}
+
+void DPHierarchy::setName(const OUString& aName) throw (RuntimeException)
+{
+ maName = aName;
+}
+
+Reference<XNameAccess> DPHierarchy::getLevels() throw (RuntimeException)
+{
+ return Reference<XNameAccess>();
+}
+
+}