Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include "sal/config.h"
21 :
22 : #include <cassert>
23 :
24 : #include "com/sun/star/uno/Reference.hxx"
25 : #include "com/sun/star/uno/RuntimeException.hpp"
26 : #include "com/sun/star/uno/XInterface.hpp"
27 : #include "rtl/ref.hxx"
28 : #include "rtl/ustring.h"
29 : #include "rtl/ustring.hxx"
30 :
31 : #include "data.hxx"
32 : #include "node.hxx"
33 : #include "nodemap.hxx"
34 :
35 : namespace configmgr {
36 :
37 0 : NodeMap & Node::getMembers() {
38 : assert(false);
39 : throw css::uno::RuntimeException(
40 : OUString("this cannot happen"),
41 0 : css::uno::Reference< css::uno::XInterface >());
42 : }
43 :
44 1153 : OUString Node::getTemplateName() const {
45 1153 : return OUString();
46 : }
47 :
48 11910 : void Node::setMandatory(int layer) {
49 : (void) layer; // avoid warnings
50 : assert(layer == Data::NO_LAYER);
51 11910 : }
52 :
53 11910 : int Node::getMandatory() const {
54 11910 : return Data::NO_LAYER;
55 : }
56 :
57 2220212 : void Node::setLayer(int layer) {
58 : assert(layer >= layer_);
59 2220212 : layer_ = layer;
60 2220212 : }
61 :
62 2741275 : int Node::getLayer() const {
63 2741275 : return layer_;
64 : }
65 :
66 2730885 : void Node::setFinalized(int layer) {
67 2730885 : finalized_ = layer;
68 2730885 : }
69 :
70 2184179 : int Node::getFinalized() const {
71 2184179 : return finalized_;
72 : }
73 :
74 1213247 : rtl::Reference< Node > Node::getMember(OUString const & name) {
75 1213247 : NodeMap const & members = getMembers();
76 1213247 : NodeMap::const_iterator i(members.find(name));
77 1213247 : return i == members.end() ? rtl::Reference< Node >() : i->second;
78 : }
79 :
80 926574 : Node::Node(int layer): layer_(layer), finalized_(Data::NO_LAYER) {}
81 :
82 4000550 : Node::Node(const Node & other):
83 4000550 : SimpleReferenceObject(), layer_(other.layer_), finalized_(other.finalized_)
84 4000550 : {}
85 :
86 4858094 : Node::~Node() {}
87 :
88 0 : void Node::clear() {}
89 :
90 : }
91 :
92 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|