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 0 : throw css::uno::RuntimeException("this cannot happen");
40 : }
41 :
42 12272 : OUString Node::getTemplateName() const {
43 12272 : return OUString();
44 : }
45 :
46 110137 : void Node::setMandatory(int layer) {
47 : (void) layer; // avoid warnings
48 : assert(layer == Data::NO_LAYER);
49 110137 : }
50 :
51 110137 : int Node::getMandatory() const {
52 110137 : return Data::NO_LAYER;
53 : }
54 :
55 6652506 : void Node::setLayer(int layer) {
56 : assert(layer >= layer_);
57 6652506 : layer_ = layer;
58 6652506 : }
59 :
60 :
61 6679884 : void Node::setFinalized(int layer) {
62 6679884 : finalized_ = layer;
63 6679884 : }
64 :
65 :
66 118588633 : rtl::Reference< Node > Node::getMember(OUString const & name) {
67 118588633 : NodeMap const & members = getMembers();
68 118588633 : NodeMap::const_iterator i(members.find(name));
69 118588633 : return i == members.end() ? rtl::Reference< Node >() : i->second;
70 : }
71 :
72 2500990 : Node::Node(int layer): layer_(layer), finalized_(Data::NO_LAYER) {}
73 :
74 10079532 : Node::Node(const Node & other):
75 10079532 : SimpleReferenceObject(), layer_(other.layer_), finalized_(other.finalized_)
76 10079532 : {}
77 :
78 12487577 : Node::~Node() {}
79 :
80 0 : void Node::clear() {}
81 :
82 : }
83 :
84 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|