bump product version to 7.2.5.1
[LibreOffice.git] / configmgr / source / node.cxx
blob8f00d3887da3a460610ee65c62e47fb33a1ec1c5
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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <sal/config.h>
22 #include <cassert>
24 #include <com/sun/star/uno/RuntimeException.hpp>
25 #include <rtl/ref.hxx>
26 #include <rtl/ustring.hxx>
28 #include "data.hxx"
29 #include "node.hxx"
30 #include "nodemap.hxx"
32 namespace configmgr {
34 NodeMap & Node::getMembers() {
35 assert(false);
36 throw css::uno::RuntimeException("this cannot happen");
39 OUString Node::getTemplateName() const {
40 return OUString();
43 void Node::setMandatory(int layer) {
44 (void) layer; // avoid warnings
45 assert(layer == Data::NO_LAYER);
48 int Node::getMandatory() const {
49 return Data::NO_LAYER;
52 void Node::setLayer(int layer) {
53 assert(layer >= layer_);
54 layer_ = layer;
58 void Node::setFinalized(int layer) {
59 finalized_ = layer;
63 rtl::Reference< Node > Node::getMember(OUString const & name) {
64 NodeMap const & members = getMembers();
65 NodeMap::const_iterator i(members.find(name));
66 return i == members.end() ? rtl::Reference< Node >() : i->second;
69 Node::Node(int layer): layer_(layer), finalized_(Data::NO_LAYER) {}
71 Node::Node(const Node & other):
72 SimpleReferenceObject(), layer_(other.layer_), finalized_(other.finalized_)
75 Node::~Node() {}
79 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */