diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-09-14 12:52:35 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-09-14 20:31:04 +0200 |
commit | 412ec9ec100fb377791b9bced8bc61ce75870e10 (patch) | |
tree | 616eb3f5ba2bc9adf8930aeda8abce53abeb6175 /sd/inc | |
parent | 970b87bb7b7d77ef12dbcad6ed7caa8edd92e413 (diff) |
no need to load ExportPPT symbol at runtime
Change-Id: I01e06fe89f95141a177298e400ccd0f54c2a05db
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139936
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/inc')
-rw-r--r-- | sd/inc/sdfilter.hxx | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/sd/inc/sdfilter.hxx b/sd/inc/sdfilter.hxx index 8d7782e4fc92..707679642dee 100644 --- a/sd/inc/sdfilter.hxx +++ b/sd/inc/sdfilter.hxx @@ -21,16 +21,19 @@ #include <osl/module.h> #include <rtl/ustring.hxx> +#include <tools/ref.hxx> +#include <com/sun/star/beans/PropertyValue.hpp> #include <com/sun/star/frame/XModel.hpp> #include <com/sun/star/task/XStatusIndicator.hpp> +#include "sddllapi.h" +#include <vector> -// SdFilter -class SfxMedium; -namespace sd { -class DrawDocShell; -} -class SdDrawDocument; namespace osl { class Module; } +namespace sd { class DrawDocShell; } +class SdDrawDocument; +class SfxMedium; +class SotStorage; +class SvMemoryStream; class SdFilter { @@ -63,4 +66,12 @@ private: }; +SD_DLLPUBLIC bool ExportPPT( const std::vector< css::beans::PropertyValue >& rMediaData, + tools::SvRef<SotStorage> const & rSvStorage, + css::uno::Reference< css::frame::XModel > const & rXModel, + css::uno::Reference< css::task::XStatusIndicator > const & rXStatInd, + SvMemoryStream* pVBA, + sal_uInt32 nCnvrtFlags ); + + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |