summaryrefslogtreecommitdiff
path: root/implementation/configuration/include/configuration_element.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'implementation/configuration/include/configuration_element.hpp')
-rw-r--r--implementation/configuration/include/configuration_element.hpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/implementation/configuration/include/configuration_element.hpp b/implementation/configuration/include/configuration_element.hpp
index 7daf9d7..2b650e3 100644
--- a/implementation/configuration/include/configuration_element.hpp
+++ b/implementation/configuration/include/configuration_element.hpp
@@ -1,4 +1,4 @@
-// Copyright (C) 2019 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
+// Copyright (C) 2019-2021 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
// 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/.
@@ -16,6 +16,16 @@ struct configuration_element {
std::string name_;
boost::property_tree::ptree tree_;
+ configuration_element(const std::string &_name, const boost::property_tree::ptree &_tree) noexcept
+ : name_(_name),
+ tree_(_tree) {
+ }
+
+ configuration_element(configuration_element &&_source) noexcept
+ : name_(std::move(_source.name_)),
+ tree_(std::move(_source.tree_)) {
+ }
+
bool operator<(const configuration_element &_other) const {
return (name_ < _other.name_);
}