summaryrefslogtreecommitdiff
path: root/sc/inc/orcusfilters.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-11-09 15:21:36 -0500
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-11-28 13:28:28 -0500
commit2ffceb198ef26579e2d3d6659384f76184ccc3e2 (patch)
treec78b290f21b36b22016f6101a72ca73d821be167 /sc/inc/orcusfilters.hxx
parent450bca12a14b090feb8e288da0ea2c5e2555b9ce (diff)
Press 'Import' in the dialog to start importing XML.
For now, the dialog only calls importXML() when the Import button is pressed, and the importXML() function still does nothing. Change-Id: I3427d343f88ba2a9b076ffc0ee4bcc44055d7717
Diffstat (limited to 'sc/inc/orcusfilters.hxx')
-rw-r--r--sc/inc/orcusfilters.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/inc/orcusfilters.hxx b/sc/inc/orcusfilters.hxx
index 019441cc954e..1b94f67bed40 100644
--- a/sc/inc/orcusfilters.hxx
+++ b/sc/inc/orcusfilters.hxx
@@ -16,6 +16,7 @@ class ScDocument;
class SvTreeListBox;
class Image;
struct ScOrcusXMLTreeParam;
+struct ScOrcusImportXMLParam;
/**
* Collection of orcus filter wrappers.
@@ -29,6 +30,9 @@ public:
virtual bool loadXMLStructure(
const rtl::OUString& rPath, SvTreeListBox& rTreeCtrl, ScOrcusXMLTreeParam& rParam) const = 0;
+
+ virtual bool importXML(
+ ScDocument& rDoc, const rtl::OUString& rPath, const ScOrcusImportXMLParam& rParam) const = 0;
};
#endif