Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / configmgr / source / rootnode.hxx
blob84e10ef2667e4cd483d4b0e5bb4fca3da97f5d66
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #pragma once
12 #include <sal/config.h>
14 #include <rtl/ref.hxx>
16 #include "node.hxx"
17 #include "nodemap.hxx"
19 namespace configmgr
21 class RootNode : public Node
23 public:
24 RootNode();
26 private:
27 virtual ~RootNode() override;
29 virtual Kind kind() const override;
31 virtual rtl::Reference<Node> clone(bool keepTemplateName) const override;
33 virtual NodeMap& getMembers() override;
35 NodeMap members_;
39 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */