/* -*- 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 typedef struct _xmlTextWriter* xmlTextWriterPtr; namespace sfx2 { /// Implemented by objects that can be dumped to xml for debugging purposes. class SAL_NO_VTABLE SAL_DLLPUBLIC_RTTI XmlDump { public: virtual void dumpAsXml(xmlTextWriterPtr pWriter) const = 0; protected: ~XmlDump() noexcept = default; }; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ bbbf992f'/> LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/include/basegfx/utils/unopolypolygon.hxx
AgeCommit message (Expand)Author
2024-03-26loplugin:finalmethodsNoel Grandin
2023-01-05Revert all the recent loplugin:unocast changesStephan Bergmann
2022-12-22loplugin:unocast (basegfx::unotools::UnoPolyPolygon)Stephan Bergmann
2022-05-27clang-tidy modernize-pass-by-value in basegfxNoel Grandin
2022-04-26Use o3tl::make_unsigned in some placesStephan Bergmann
2021-12-27use comphelper::WeakComponentImplHelper in UnoPolyPolygonNoel Grandin
2021-12-01improve the script for reducing symbol exportsNoel Grandin
2020-05-12basegfx: simplify namespaces in ALL basegfx headersTomaž Vajngerl
2020-05-12use pragma once in include/basegfx headersTomaž Vajngerl
2017-09-26Rename the basegfx::tools namespace to basegfx::utilsTor Lillqvist