bump product version to 7.2.5.1
[LibreOffice.git] / configmgr / source / setnode.cxx
blob2ba4c50be68185a9b2b25c4bef9075dd675578ba
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 <algorithm>
24 #include <rtl/ref.hxx>
25 #include <rtl/ustring.hxx>
27 #include "data.hxx"
28 #include "node.hxx"
29 #include "nodemap.hxx"
30 #include "setnode.hxx"
32 namespace configmgr {
34 SetNode::SetNode(
35 int layer, OUString const & defaultTemplateName,
36 OUString const & templateName):
37 Node(layer), defaultTemplateName_(defaultTemplateName),
38 templateName_(templateName), mandatory_(Data::NO_LAYER)
41 rtl::Reference< Node > SetNode::clone(bool keepTemplateName) const {
42 return new SetNode(*this, keepTemplateName);
45 NodeMap & SetNode::getMembers() {
46 return members_;
49 OUString SetNode::getTemplateName() const {
50 return templateName_;
53 void SetNode::setMandatory(int layer) {
54 mandatory_ = layer;
57 int SetNode::getMandatory() const {
58 return mandatory_;
62 bool SetNode::isValidTemplate(OUString const & templateName) const {
63 return Data::equalTemplateNames(templateName, defaultTemplateName_) ||
64 std::any_of(
65 additionalTemplateNames_.begin(),
66 additionalTemplateNames_.end(),
67 [&templateName](OUString const & longName) { return Data::equalTemplateNames(templateName, longName); } );
70 SetNode::SetNode(SetNode const & other, bool keepTemplateName):
71 Node(other), defaultTemplateName_(other.defaultTemplateName_),
72 additionalTemplateNames_(other.additionalTemplateNames_),
73 mandatory_(other.mandatory_)
75 other.members_.cloneInto(&members_);
76 if (keepTemplateName) {
77 templateName_ = other.templateName_;
81 SetNode::~SetNode() {}
83 Node::Kind SetNode::kind() const {
84 return KIND_SET;
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */