Files
core/include/svx/CommonStyleManager.hxx
Gabor Kelemen de8b935e16 Drop unneeded forward declarations from include/ even harder
test drive the new bin/find-unneeded-includes --fwdecl mode
with iwyu 0.23 instead of 0.21, this seems to find more unneeded
fw declarations

Change-Id: I451e571c70eb74f46c799753e3c5a53c0110da36
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/179707
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2025-01-06 09:28:27 +01:00

38 lines
1.1 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* 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/.
*/
#ifndef INCLUDED_SVX_COMMONSTYLEMANAGER_HXX
#define INCLUDED_SVX_COMMONSTYLEMANAGER_HXX
#include <sfx2/StyleManager.hxx>
#include <svx/svxdllapi.h>
class SfxObjectShell;
namespace svx
{
class SVXCORE_DLLPUBLIC CommonStyleManager final : public sfx2::StyleManager
{
public:
CommonStyleManager(SfxObjectShell& rShell)
: StyleManager(rShell)
{}
virtual std::unique_ptr<sfx2::StylePreviewRenderer> CreateStylePreviewRenderer(
OutputDevice& rOutputDev, SfxStyleSheetBase* pStyle,
tools::Long nMaxHeight) override;
};
} // end namespace svx
#endif // INCLUDED_SVX_COMMONSTYLEMANAGER_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */