/* -*- 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_SVL_STYLESHEETUSER_HXX #define INCLUDED_SVL_STYLESHEETUSER_HXX namespace svl { /** Test whether object that uses a stylesheet is used itself. This interface should be implemented by all classes that use a SfxStyleSheet (and listen on it). It can be queried by the stylesheet to determine if it is really used. */ class StyleSheetUser { public: /** Test whether this object is used. @return true, if the object is used, false otherwise */ virtual bool isUsedByModel() const = 0; protected: ~StyleSheetUser() {} }; } #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /zeta-7-3'>distro/allotropia/zeta-7-3 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/registry/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-11-01 09:48:16 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-11-02 07:03:08 +0100
commit8467d764187691f53e66d3568270197b162332d8 (patch)
tree4516bb3ea935427d4549ce09615a22bf5663096a /registry/source
parent9ec1f722caedbeb04f96258f23442f8ee92a42be (diff)
fix signatures of deleted copy/assign operators