From 841fa39321656c349376b2ead27a809c3289918f Mon Sep 17 00:00:00 2001 From: Jamie Reece Wilson Date: Sat, 16 Sep 2023 21:22:03 +0100 Subject: [PATCH] [*] CmdLine has been deserving of the Au prefix for quite some time --- Source/AuRTEntrypoint.cpp | 2 +- Source/CmdLine/{CmdLine.cpp => AuCmdLine.cpp} | 8 ++++---- Source/CmdLine/{CmdLine.hpp => AuCmdLine.hpp} | 4 ++-- .../{CmdLinePlatform.cpp => AuCmdLinePlatform.cpp} | 8 ++++---- .../{CmdLinePlatform.hpp => AuCmdLinePlatform.hpp} | 4 ++-- 5 files changed, 13 insertions(+), 13 deletions(-) rename Source/CmdLine/{CmdLine.cpp => AuCmdLine.cpp} (96%) rename Source/CmdLine/{CmdLine.hpp => AuCmdLine.hpp} (54%) rename Source/CmdLine/{CmdLinePlatform.cpp => AuCmdLinePlatform.cpp} (95%) rename Source/CmdLine/{CmdLinePlatform.hpp => AuCmdLinePlatform.hpp} (52%) diff --git a/Source/AuRTEntrypoint.cpp b/Source/AuRTEntrypoint.cpp index 36b04dcd..ac7d11e0 100644 --- a/Source/AuRTEntrypoint.cpp +++ b/Source/AuRTEntrypoint.cpp @@ -32,7 +32,7 @@ #include "Debug/MemoryCrunch.hpp" #include "Process/Process.hpp" #include "Exit/AuExit.hpp" -#include "CmdLine/CmdLine.hpp" +#include "CmdLine/AuCmdLine.hpp" #include "Grug/AuGrug.hpp" #include "Threading/AuSleep.hpp" #include "Memory/Cache.hpp" diff --git a/Source/CmdLine/CmdLine.cpp b/Source/CmdLine/AuCmdLine.cpp similarity index 96% rename from Source/CmdLine/CmdLine.cpp rename to Source/CmdLine/AuCmdLine.cpp index 67ef95dc..00912d33 100644 --- a/Source/CmdLine/CmdLine.cpp +++ b/Source/CmdLine/AuCmdLine.cpp @@ -1,13 +1,13 @@ /*** - Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved. + Copyright (C) 2022-2023 J Reece Wilson (a/k/a "Reece"). All rights reserved. - File: CmdLine.cpp + File: AuCmdLine.cpp Date: 2022-1-31 Author: Reece ***/ #include -#include "CmdLine.hpp" -#include "CmdLinePlatform.hpp" +#include "AuCmdLine.hpp" +#include "AuCmdLinePlatform.hpp" namespace Aurora::CmdLine { diff --git a/Source/CmdLine/CmdLine.hpp b/Source/CmdLine/AuCmdLine.hpp similarity index 54% rename from Source/CmdLine/CmdLine.hpp rename to Source/CmdLine/AuCmdLine.hpp index cecf2986..2d71108f 100644 --- a/Source/CmdLine/CmdLine.hpp +++ b/Source/CmdLine/AuCmdLine.hpp @@ -1,7 +1,7 @@ /*** - Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved. + Copyright (C) 2022-2023 J Reece Wilson (a/k/a "Reece"). All rights reserved. - File: CmdLine.hpp + File: AuCmdLine.hpp Date: 2022-1-31 Author: Reece ***/ diff --git a/Source/CmdLine/CmdLinePlatform.cpp b/Source/CmdLine/AuCmdLinePlatform.cpp similarity index 95% rename from Source/CmdLine/CmdLinePlatform.cpp rename to Source/CmdLine/AuCmdLinePlatform.cpp index ec810346..2dd0458e 100644 --- a/Source/CmdLine/CmdLinePlatform.cpp +++ b/Source/CmdLine/AuCmdLinePlatform.cpp @@ -1,13 +1,13 @@ /*** - Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved. + Copyright (C) 2022-2023 J Reece Wilson (a/k/a "Reece"). All rights reserved. - File: CmdLinePlatform.cpp + File: AuCmdLinePlatform.cpp Date: 2022-2-6 Author: Reece ***/ #include -#include "CmdLine.hpp" -#include "CmdLinePlatform.hpp" +#include "AuCmdLine.hpp" +#include "AuCmdLinePlatform.hpp" #if defined(AURORA_PLATFORM_WIN32) #include diff --git a/Source/CmdLine/CmdLinePlatform.hpp b/Source/CmdLine/AuCmdLinePlatform.hpp similarity index 52% rename from Source/CmdLine/CmdLinePlatform.hpp rename to Source/CmdLine/AuCmdLinePlatform.hpp index 5f9d8a2b..4c3da26d 100644 --- a/Source/CmdLine/CmdLinePlatform.hpp +++ b/Source/CmdLine/AuCmdLinePlatform.hpp @@ -1,7 +1,7 @@ /*** - Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved. + Copyright (C) 2022-2023 J Reece Wilson (a/k/a "Reece"). All rights reserved. - File: CmdLinePlatform.hpp + File: AuCmdLinePlatform.hpp Date: 2022-2-6 Author: Reece ***/