summaryrefslogtreecommitdiff
path: root/sc/inc/orcusfilters.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-09-28 22:19:46 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-11-28 13:28:21 -0500
commit5067591aba2f04bbf18621c9f76b03eaa29d1c08 (patch)
tree798e826ebdcdebf5f22641bcb872fb12123177f0 /sc/inc/orcusfilters.hxx
parent8ca9f3c53e231bd528ff0f0a8af511ba9f517172 (diff)
Call orcus filter accessor from the dialog when a new source file is set.
For now it doesn't do anything. Change-Id: I8e41c7e15c3b99ab0ddec8e68242176c97f368fc
Diffstat (limited to 'sc/inc/orcusfilters.hxx')
-rw-r--r--sc/inc/orcusfilters.hxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/sc/inc/orcusfilters.hxx b/sc/inc/orcusfilters.hxx
index b7e31986bb5d..2379c670105f 100644
--- a/sc/inc/orcusfilters.hxx
+++ b/sc/inc/orcusfilters.hxx
@@ -13,6 +13,7 @@
#include "rtl/ustring.hxx"
class ScDocument;
+class SvTreeListBox;
/**
* Collection of orcus filter wrappers.
@@ -23,6 +24,8 @@ public:
virtual ~ScOrcusFilters() {}
virtual bool importCSV(ScDocument& rDoc, const rtl::OUString& rPath) const = 0;
+
+ virtual bool loadXMLStructure(const rtl::OUString& rPath, SvTreeListBox& rTree) const = 0;
};
#endif