From 807d7b9ff5bc914c1a76f1e1bb0efab3e8b8c774 Mon Sep 17 00:00:00 2001 From: lucaspalomodevelop Date: Sat, 7 Oct 2023 15:04:46 +0200 Subject: [PATCH] rename from .h to .hpp --- src/{command.h => command.hpp} | 0 src/{commands.h => commands.hpp} | 0 src/main.cpp | 2 +- src/{main.h => main.hpp} | 6 +++--- src/{setup.h => setup.hpp} | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename src/{command.h => command.hpp} (100%) rename src/{commands.h => commands.hpp} (100%) rename src/{main.h => main.hpp} (55%) rename src/{setup.h => setup.hpp} (100%) diff --git a/src/command.h b/src/command.hpp similarity index 100% rename from src/command.h rename to src/command.hpp diff --git a/src/commands.h b/src/commands.hpp similarity index 100% rename from src/commands.h rename to src/commands.hpp diff --git a/src/main.cpp b/src/main.cpp index 322a8cb..f19a7f4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,4 +1,4 @@ -#include "./main.h" +#include "./main.hpp" int main(int argc, char *argv[]) { diff --git a/src/main.h b/src/main.hpp similarity index 55% rename from src/main.h rename to src/main.hpp index a38ec79..fc9fbac 100644 --- a/src/main.h +++ b/src/main.hpp @@ -1,7 +1,7 @@ #include -#include "./setup.h" -#include "./command.h" -#include "./commands.h" +#include "./setup.hpp" +#include "./command.hpp" +#include "./commands.hpp" Setup &setup = Setup::Instance(); Command &command = Command::Instance(); \ No newline at end of file diff --git a/src/setup.h b/src/setup.hpp similarity index 100% rename from src/setup.h rename to src/setup.hpp