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>
This commit is contained in:
Jaskaran Singh
2017-01-10 22:29:35 +05:30
committed by Markus Mohrhard
parent d685b030aa
commit 92fc31dd78

View File

@@ -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();