Files
loongoffice/include/sfx2/sidebar/SidebarModelUpdate.hxx
Noel Grandin 033aaeec9e use more UNLESS_MERGELIBS
Change-Id: I351a9127fb26369d8f598b6d6519d7e490fa476b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163190
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2024-02-12 20:25:54 +01:00

35 lines
836 B
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/.
*/
#pragma once
#include <config_options.h>
#include <sfx2/dllapi.h>
namespace com::sun::star::frame
{
class XModel;
}
namespace com::sun::star::uno
{
template <typename> class Reference;
}
namespace sfx2::sidebar
{
class UNLESS_MERGELIBS(SFX2_DLLPUBLIC) SAL_LOPLUGIN_ANNOTATE("crosscast") SidebarModelUpdate
{
public:
virtual ~SidebarModelUpdate();
virtual void updateModel(css::uno::Reference<css::frame::XModel> xModel) = 0;
};
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */