From 865cf290f458e7fbd51187565d805ee4fe1fddac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6tz=20G=C3=B6risch?= Date: Fri, 8 Dec 2023 08:15:24 +0000 Subject: [PATCH] fix(converter): Add missing include --- OpcUaClient/Converter/UaToModelConverter.hpp | 32 ++++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/OpcUaClient/Converter/UaToModelConverter.hpp b/OpcUaClient/Converter/UaToModelConverter.hpp index 9a429cf8..2fb418f0 100644 --- a/OpcUaClient/Converter/UaToModelConverter.hpp +++ b/OpcUaClient/Converter/UaToModelConverter.hpp @@ -1,7 +1,7 @@ - /* This Source Code Form is subject to the terms of the Mozilla Public +/* 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/. - * + * * Copyright 2019-2021 (c) Christian von Arnim, ISW University of Stuttgart (for umati and VDW e.V.) * Copyright 2020 (c) Dominik Basner, Sotec GmbH (for VDW e.V.) * Copyright 2021 (c) Marius Dege, basysKom GmbH @@ -11,22 +11,22 @@ #include #include +#include namespace Umati { - namespace OpcUa { - namespace Converter { - class UaToModelConverter { - public: - explicit UaToModelConverter(const std::map &idToUri); +namespace OpcUa { +namespace Converter { +class UaToModelConverter { + public: + explicit UaToModelConverter(const std::map &idToUri); - virtual ~UaToModelConverter() = 0; + virtual ~UaToModelConverter() = 0; - protected: + protected: + std::string getUriFromNsIndex(uint16_t nsIndex); - std::string getUriFromNsIndex(uint16_t nsIndex); - - const std::map &m_idToUri; - }; - } - } -} + const std::map &m_idToUri; +}; +} // namespace Converter +} // namespace OpcUa +} // namespace Umati