diff options
author | Jaskaran Singh <jvsg1303@gmail.com> | 2017-01-10 22:29:35 +0530 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-01-15 12:03:21 +0000 |
commit | 92fc31dd787149b59fcd08c08bffb90a9e2f5b64 (patch) | |
tree | db7c3670faa9257f8d34e1446aea6360d0fa6bc0 /sc | |
parent | d685b030aa0d7aa25d9666cd6857b7cb917e297c (diff) |
Expose ExternalDataMapper member functions to the public
Change-Id: I182778353e664f9e3dd8003a38c06202e5cdfdec
Reviewed-on: https://gerrit.libreoffice.org/32934
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/inc/dataprovider.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sc/source/ui/inc/dataprovider.hxx b/sc/source/ui/inc/dataprovider.hxx index 7093ee5ccc5b..b915c45af35e 100644 --- a/sc/source/ui/inc/dataprovider.hxx +++ b/sc/source/ui/inc/dataprovider.hxx @@ -22,6 +22,7 @@ #include <document.hxx> #include "docsh.hxx" +#include "scdllapi.h" #include <queue> @@ -39,7 +40,7 @@ SvStream* FetchStreamFromURL(OUString& rUrl); class DataProvider; -class ExternalDataMapper +class SC_DLLPUBLIC ExternalDataMapper { ScRange maRange; ScDocShell* mpDocShell; @@ -50,7 +51,8 @@ class ExternalDataMapper public: ExternalDataMapper(ScDocShell* pDocShell, const OUString& rUrl, const OUString& rName, - SCTAB nTab, SCCOL nCol1,SCROW nRow1, SCCOL nCOL2, SCROW nRow2, bool& bSuccess); + SCTAB nTab, SCCOL nCol1,SCROW nRow1, SCCOL nCOL2, SCROW nRow2, bool& bSuccess); + ~ExternalDataMapper(); void StartImport(); |