diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-09-13 14:33:09 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-09-14 08:33:26 +0200 |
commit | 5cc45f148dac2080d5cdc2d69db539d55b1ff816 (patch) | |
tree | 42239b50849dea5e824eb294d651a33e6bc999e5 /include | |
parent | c70ee4a6b9071468255e5d4fdb893e9c9bdf4fad (diff) |
no need to dynamically ImportCGM symbol
we are preloading this library anyway, so whatever benefit this might
have provided is long gone
Change-Id: I36ca42de5f802c73b2e2da3b52a996657298211f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139865
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/filter/importcgm.hxx | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/include/filter/importcgm.hxx b/include/filter/importcgm.hxx new file mode 100644 index 000000000000..a6782e1305a3 --- /dev/null +++ b/include/filter/importcgm.hxx @@ -0,0 +1,22 @@ + +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ +#pragma once + +#include <com/sun/star/frame/XModel.hpp> +#include <com/sun/star/task/XStatusIndicator.hpp> +#include <filter/dllapi.h> + +class SvStream; + +FILTER_DLLPUBLIC sal_uInt32 +ImportCGM(SvStream& rIn, css::uno::Reference<css::frame::XModel> const& rXModel, + css::uno::Reference<css::task::XStatusIndicator> const& aXStatInd); + +/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ |