Skip to content

Commit

Permalink
fix(converter): Add missing include
Browse files Browse the repository at this point in the history
  • Loading branch information
GoetzGoerisch committed Dec 8, 2023
1 parent 31cc319 commit 865cf29
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions OpcUaClient/Converter/UaToModelConverter.hpp
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -11,22 +11,22 @@

#include <string>
#include <map>
#include <cstdint>

namespace Umati {
namespace OpcUa {
namespace Converter {
class UaToModelConverter {
public:
explicit UaToModelConverter(const std::map<uint16_t, std::string> &idToUri);
namespace OpcUa {
namespace Converter {
class UaToModelConverter {
public:
explicit UaToModelConverter(const std::map<uint16_t, std::string> &idToUri);

virtual ~UaToModelConverter() = 0;
virtual ~UaToModelConverter() = 0;

protected:
protected:
std::string getUriFromNsIndex(uint16_t nsIndex);

std::string getUriFromNsIndex(uint16_t nsIndex);

const std::map<uint16_t, std::string> &m_idToUri;
};
}
}
}
const std::map<uint16_t, std::string> &m_idToUri;
};
} // namespace Converter
} // namespace OpcUa
} // namespace Umati

0 comments on commit 865cf29

Please sign in to comment.