From f7e449c025a9f28e8aa2bdd34111df90c1f13e08 Mon Sep 17 00:00:00 2001 From: susanw1 Date: Mon, 20 Nov 2023 14:39:02 +0000 Subject: [PATCH] [#143] Standardized include order --- .../src/main/c++/zscript/modules/core/ActivateCommand.hpp | 3 ++- .../src/main/c++/zscript/modules/core/CapabilitiesCommand.hpp | 3 ++- .../src/main/c++/zscript/modules/core/ChannelInfoCommand.hpp | 3 ++- .../src/main/c++/zscript/modules/core/EchoCommand.hpp | 3 ++- .../main/c++/zscript/modules/outerCore/ChannelSetupCommand.hpp | 3 ++- .../zscript/modules/outerCore/ExtendedCapabilitiesCommand.hpp | 3 ++- 6 files changed, 12 insertions(+), 6 deletions(-) diff --git a/receivers/native/generic-core/src/main/c++/zscript/modules/core/ActivateCommand.hpp b/receivers/native/generic-core/src/main/c++/zscript/modules/core/ActivateCommand.hpp index 3b065e405..69f5dc63f 100644 --- a/receivers/native/generic-core/src/main/c++/zscript/modules/core/ActivateCommand.hpp +++ b/receivers/native/generic-core/src/main/c++/zscript/modules/core/ActivateCommand.hpp @@ -8,8 +8,9 @@ #ifndef SRC_MAIN_C___ZSCRIPT_MODULES_CORE_ACTIVATECOMMAND_HPP_ #define SRC_MAIN_C___ZSCRIPT_MODULES_CORE_ACTIVATECOMMAND_HPP_ -#include #include "../../ZscriptIncludes.hpp" + +#include #include "../../execution/ZscriptCommandContext.hpp" #include "../../LanguageVersion.hpp" diff --git a/receivers/native/generic-core/src/main/c++/zscript/modules/core/CapabilitiesCommand.hpp b/receivers/native/generic-core/src/main/c++/zscript/modules/core/CapabilitiesCommand.hpp index 50b568417..ef4fa6f17 100644 --- a/receivers/native/generic-core/src/main/c++/zscript/modules/core/CapabilitiesCommand.hpp +++ b/receivers/native/generic-core/src/main/c++/zscript/modules/core/CapabilitiesCommand.hpp @@ -8,8 +8,9 @@ #ifndef SRC_MAIN_C___ZSCRIPT_MODULES_CORE_CAPABILITIESCOMMAND_HPP_ #define SRC_MAIN_C___ZSCRIPT_MODULES_CORE_CAPABILITIESCOMMAND_HPP_ -#include #include "../../ZscriptIncludes.hpp" + +#include #include "../../execution/ZscriptCommandContext.hpp" #include "../../LanguageVersion.hpp" #include "../ZscriptModule.hpp" diff --git a/receivers/native/generic-core/src/main/c++/zscript/modules/core/ChannelInfoCommand.hpp b/receivers/native/generic-core/src/main/c++/zscript/modules/core/ChannelInfoCommand.hpp index 45f34853a..4ef85c2fe 100644 --- a/receivers/native/generic-core/src/main/c++/zscript/modules/core/ChannelInfoCommand.hpp +++ b/receivers/native/generic-core/src/main/c++/zscript/modules/core/ChannelInfoCommand.hpp @@ -8,8 +8,9 @@ #ifndef SRC_MAIN_C___ZSCRIPT_MODULES_CORE_CHANNELINFOCOMMAND_HPP_ #define SRC_MAIN_C___ZSCRIPT_MODULES_CORE_CHANNELINFOCOMMAND_HPP_ -#include #include "../../ZscriptIncludes.hpp" + +#include #include "../../execution/ZscriptCommandContext.hpp" #include "../../LanguageVersion.hpp" diff --git a/receivers/native/generic-core/src/main/c++/zscript/modules/core/EchoCommand.hpp b/receivers/native/generic-core/src/main/c++/zscript/modules/core/EchoCommand.hpp index 7bf5e043c..c11ca2399 100644 --- a/receivers/native/generic-core/src/main/c++/zscript/modules/core/EchoCommand.hpp +++ b/receivers/native/generic-core/src/main/c++/zscript/modules/core/EchoCommand.hpp @@ -8,8 +8,9 @@ #ifndef SRC_MAIN_C___ZSCRIPT_MODULES_CORE_ECHOCOMMAND_HPP_ #define SRC_MAIN_C___ZSCRIPT_MODULES_CORE_ECHOCOMMAND_HPP_ -#include #include "../../ZscriptIncludes.hpp" + +#include #include "../../execution/ZscriptCommandContext.hpp" #include "../../LanguageVersion.hpp" diff --git a/receivers/native/generic-core/src/main/c++/zscript/modules/outerCore/ChannelSetupCommand.hpp b/receivers/native/generic-core/src/main/c++/zscript/modules/outerCore/ChannelSetupCommand.hpp index 32991f752..d04c8290f 100644 --- a/receivers/native/generic-core/src/main/c++/zscript/modules/outerCore/ChannelSetupCommand.hpp +++ b/receivers/native/generic-core/src/main/c++/zscript/modules/outerCore/ChannelSetupCommand.hpp @@ -8,8 +8,9 @@ #ifndef SRC_MAIN_C___ZSCRIPT_MODULES_CORE_CHANNELSETUPCOMMAND_HPP_ #define SRC_MAIN_C___ZSCRIPT_MODULES_CORE_CHANNELSETUPCOMMAND_HPP_ -#include #include "../../ZscriptIncludes.hpp" + +#include #include "../../execution/ZscriptCommandContext.hpp" #include "../../LanguageVersion.hpp" diff --git a/receivers/native/generic-core/src/main/c++/zscript/modules/outerCore/ExtendedCapabilitiesCommand.hpp b/receivers/native/generic-core/src/main/c++/zscript/modules/outerCore/ExtendedCapabilitiesCommand.hpp index b0fd2a301..ee76ecb3b 100644 --- a/receivers/native/generic-core/src/main/c++/zscript/modules/outerCore/ExtendedCapabilitiesCommand.hpp +++ b/receivers/native/generic-core/src/main/c++/zscript/modules/outerCore/ExtendedCapabilitiesCommand.hpp @@ -8,8 +8,9 @@ #ifndef SRC_MAIN_C___ZSCRIPT_MODULES_OUTERCORE_EXTENDEDCAPABILITIESCOMMAND_HPP_ #define SRC_MAIN_C___ZSCRIPT_MODULES_OUTERCORE_EXTENDEDCAPABILITIESCOMMAND_HPP_ -#include #include "../../ZscriptIncludes.hpp" + +#include #include "../../execution/ZscriptCommandContext.hpp" #include "../ZscriptModule.hpp"