From d766f38813d675be36effcef3e7077c94165fc10 Mon Sep 17 00:00:00 2001 From: Pat Hartl Date: Sat, 23 May 2026 16:58:45 -0500 Subject: [PATCH] Fix includes --- LANCommander.SDK.Cpp/include/lancommander/types.h | 1 + LANCommander.SDK.Cpp/src/clients/beacon_client.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/LANCommander.SDK.Cpp/include/lancommander/types.h b/LANCommander.SDK.Cpp/include/lancommander/types.h index fd6fb967..2cb8582a 100644 --- a/LANCommander.SDK.Cpp/include/lancommander/types.h +++ b/LANCommander.SDK.Cpp/include/lancommander/types.h @@ -1,6 +1,7 @@ #ifndef LANCOMMANDER_TYPES_H #define LANCOMMANDER_TYPES_H +#include #include #include #include diff --git a/LANCommander.SDK.Cpp/src/clients/beacon_client.cpp b/LANCommander.SDK.Cpp/src/clients/beacon_client.cpp index 793beddb..a9dc3fc1 100644 --- a/LANCommander.SDK.Cpp/src/clients/beacon_client.cpp +++ b/LANCommander.SDK.Cpp/src/clients/beacon_client.cpp @@ -1,6 +1,7 @@ #include "lancommander/clients/beacon_client.h" #include "../json/json_helpers.h" +#include #include #ifdef _WIN32