From a40c02381269b62fd55605ba9e3d7157a3a5c1e1 Mon Sep 17 00:00:00 2001 From: Christian von Arnim Date: Tue, 10 Oct 2023 13:41:28 +0200 Subject: [PATCH] fix: Add missing #include --- Configuration/Configuration.hpp | 5 +++-- UmatiServerLib/BindHelper.hpp | 3 ++- UmatiServerLib/StateMachine.hpp | 3 ++- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Configuration/Configuration.hpp b/Configuration/Configuration.hpp index 90370efa..08d97d2d 100644 --- a/Configuration/Configuration.hpp +++ b/Configuration/Configuration.hpp @@ -2,10 +2,11 @@ * 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 2021 (c) Christian von Arnim, ISW University of Stuttgart (for umati and VDW e.V.) - * Copyright 2022 (c) Alen Galinec + * Copyright (c) 2021,2023 Christian von Arnim, ISW University of Stuttgart (for umati and VDW e.V.) + * Copyright (c) 2022 Alen Galinec */ +#include #include #include #include diff --git a/UmatiServerLib/BindHelper.hpp b/UmatiServerLib/BindHelper.hpp index 3897fd5f..1af12475 100644 --- a/UmatiServerLib/BindHelper.hpp +++ b/UmatiServerLib/BindHelper.hpp @@ -2,7 +2,7 @@ * 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 2020-2021 (c) Christian von Arnim, ISW University of Stuttgart (for umati and VDW e.V.) + * Copyright (c) 2020-2021,2023 Christian von Arnim, ISW University of Stuttgart (for umati and VDW e.V.) */ #pragma once @@ -11,6 +11,7 @@ #include #include +#include #include #include diff --git a/UmatiServerLib/StateMachine.hpp b/UmatiServerLib/StateMachine.hpp index 5336c02f..9a1c83ba 100644 --- a/UmatiServerLib/StateMachine.hpp +++ b/UmatiServerLib/StateMachine.hpp @@ -2,7 +2,7 @@ * 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 2020-2021 (c) Christian von Arnim, ISW University of Stuttgart (for umati and VDW e.V.) + * Copyright (c) 2020-2021, 2023 Christian von Arnim, ISW University of Stuttgart (for umati and VDW e.V.) */ #pragma once @@ -10,6 +10,7 @@ #include #include +#include #include #include "../OpcUaTypes/LocalizedText.hpp"