/* -*- 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 #include #include "node.hxx" #include "nodemap.hxx" namespace configmgr { class RootNode : public Node { public: RootNode(); private: virtual ~RootNode() override; virtual Kind kind() const override; virtual rtl::Reference clone(bool keepTemplateName) const override; virtual NodeMap& getMembers() override; NodeMap members_; }; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ value='aoo/trunk'>aoo/trunk LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2023-10-07loplugin:ostr: automatic rewriteStephan Bergmann
2023-05-24Remove unused comphelper::adjustIndexToStartOfSurrogateStephan Bergmann
2023-05-05Break comphelper::adjustIndexToStartOfSurrogate out of o3tl::iterateCodePointsStephan Bergmann
2022-11-18Related tdf#104597, tdf#151546: Introduce comphelper::string::reverseCodePointsStephan Bergmann
2022-10-14Remove unused comphelper::string::reverseString overloadStephan Bergmann
2022-05-20comphelper: fix natural string compare function + reorganize testsTomaž Vajngerl
2022-04-04use string_view in comphelper::string::splitNoel Grandin
2021-04-19use more string_view in comphelper::stringNoel Grandin
2020-12-11Adapt the remaining OUString functions to std string_viewStephan Bergmann
2020-10-28Extend loplugin:elidestringvar to OStringStephan Bergmann
2020-09-23Simplify some OUString constructions with universal character namesStephan Bergmann
2020-06-03Upcoming loplugin:elidestringvar: comphelperStephan Bergmann
2019-10-19Replace some uses of OUStringChar with string literalsStephan Bergmann
2019-10-17Rename OUStringLiteral1 to OUStringCharStephan Bergmann
2018-10-08tdf#42949 Fix IWYU warnings in include/comphelper/[m-z]*Gabor Kelemen
2018-06-01loplugin: look for CPPUNIT_ASSERT_EQUALS with params swappedNoel Grandin
2018-01-12More loplugin:cstylecast: comphelperStephan Bergmann
2017-10-23loplugin:includeform: comphelperStephan Bergmann
2017-05-04Replace all OUString("") with OUString()Arnaud Versini
2017-03-29sw: plain-text ASCII export: filter out all CH_TXT_ATR_*Michael Stahl
2017-01-26Remove dynamic exception specificationsStephan Bergmann
2016-08-30Let OUStringLiteral1 take its arg as ctor arg, not template argStephan Bergmann
2016-08-29Adapt loplugin:stringconstant to improved OUStringLiteral1Stephan Bergmann
2016-08-10comphelper: fix loplugin:cppunitassertequals warningsMiklos Vajna
2016-07-04remove comphelper::string::removeNoel Grandin
2016-06-18add comphelper::string::splitMarkus Mohrhard
2016-02-08loplugin:unusedmethodsNoel Grandin
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann
2015-07-20tdf#88206 replace cppu::WeakImplHelper* etc.Takeshi Abe