Normalize C++ indentation to four spaces

This commit is contained in:
Maxime dcb
2025-10-14 16:05:39 +02:00
parent 46975f58dc
commit 2f6652ddbb
117 changed files with 11326 additions and 11326 deletions
+9 -9
View File
@@ -7,17 +7,17 @@ class ModuleTemplate : public ModuleCmd
{
public:
ModuleTemplate();
~ModuleTemplate();
ModuleTemplate();
~ModuleTemplate();
std::string getInfo();
std::string getInfo();
int init(std::vector<std::string>& splitedCmd, C2Message& c2Message);
int process(C2Message& c2Message, C2Message& c2RetMessage);
int errorCodeToMsg(const C2Message &c2RetMessage, std::string& errorMsg);
int followUp(const C2Message &c2RetMessage);
int osCompatibility()
{
int init(std::vector<std::string>& splitedCmd, C2Message& c2Message);
int process(C2Message& c2Message, C2Message& c2RetMessage);
int errorCodeToMsg(const C2Message &c2RetMessage, std::string& errorMsg);
int followUp(const C2Message &c2RetMessage);
int osCompatibility()
{
return OS_LINUX | OS_WINDOWS;
}