2011-12-13 12:37:00 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
2013-04-19 21:10:42 +01:00
|
|
|
* This file is part of the LibreOffice project.
|
2011-12-13 12:37:00 +01:00
|
|
|
*
|
2013-04-19 21:10:42 +01:00
|
|
|
* 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/.
|
2011-12-13 12:37:00 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INCLUDED_CONFIGMGR_SOURCE_ROOTNODE_HXX
|
|
|
|
#define INCLUDED_CONFIGMGR_SOURCE_ROOTNODE_HXX
|
|
|
|
|
2014-05-28 15:24:46 +02:00
|
|
|
#include <sal/config.h>
|
2011-12-13 12:37:00 +01:00
|
|
|
|
2014-05-28 15:24:46 +02:00
|
|
|
#include <rtl/ref.hxx>
|
2011-12-13 12:37:00 +01:00
|
|
|
|
|
|
|
#include "node.hxx"
|
|
|
|
#include "nodemap.hxx"
|
|
|
|
|
|
|
|
namespace configmgr {
|
|
|
|
|
|
|
|
class RootNode: public Node {
|
|
|
|
public:
|
2011-12-13 22:16:31 +01:00
|
|
|
RootNode();
|
2011-12-13 12:37:00 +01:00
|
|
|
|
|
|
|
private:
|
2016-09-13 13:09:01 +02:00
|
|
|
virtual ~RootNode() override;
|
2011-12-13 12:37:00 +01:00
|
|
|
|
2015-10-12 16:04:04 +02:00
|
|
|
virtual Kind kind() const override;
|
2011-12-13 12:37:00 +01:00
|
|
|
|
2015-10-12 16:04:04 +02:00
|
|
|
virtual rtl::Reference< Node > clone(bool keepTemplateName) const override;
|
2011-12-13 12:37:00 +01:00
|
|
|
|
2015-10-12 16:04:04 +02:00
|
|
|
virtual NodeMap & getMembers() override;
|
2011-12-13 12:37:00 +01:00
|
|
|
|
2011-12-13 22:16:31 +01:00
|
|
|
NodeMap members_;
|
2011-12-13 12:37:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|