From 7225534a2804f2d839603d719399083babb37bf5 Mon Sep 17 00:00:00 2001 From: nasiCurious Date: Sat, 19 Nov 2022 14:21:59 +0330 Subject: [PATCH] pointer --- CommandDetector.pro.user | 2 +- logic/include/CommandDecoder.h | 5 ++--- logic/include/CommandDecoder.h.autosave | 27 ------------------------- 3 files changed, 3 insertions(+), 31 deletions(-) delete mode 100644 logic/include/CommandDecoder.h.autosave diff --git a/CommandDetector.pro.user b/CommandDetector.pro.user index 2978f43..e089a3a 100644 --- a/CommandDetector.pro.user +++ b/CommandDetector.pro.user @@ -1,6 +1,6 @@ - + EnvironmentId diff --git a/logic/include/CommandDecoder.h b/logic/include/CommandDecoder.h index 93ef30c..93ee20b 100644 --- a/logic/include/CommandDecoder.h +++ b/logic/include/CommandDecoder.h @@ -7,9 +7,8 @@ class CommandDecoder { private: - QList decodedList; - bool isNextItemValue = true; - int j = 0; + QList _decodedList; + bool _isNextItemValue = true; int _argc; bool isCommand(char* argv); diff --git a/logic/include/CommandDecoder.h.autosave b/logic/include/CommandDecoder.h.autosave deleted file mode 100644 index 6d933e3..0000000 --- a/logic/include/CommandDecoder.h.autosave +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef COMMANDDECODER_H -#define COMMANDDECODER_H - -#include -#include "CommandsType.h" - -class CommandDecoder -{ -private: - QList _decodedList; - bool _isNextItemValue = true; - int j = 0; - int _argc; - - bool isCommand(char* argv); - void checkIfEnoughArgsAreProvided(int argc); - QList CommandValueDecoder(char* argv[]); - void initCommandStrcut(char* argv, CommandsType& sample); - void checkIfNextItemShallBeValue(char* argv); - -public: - CommandDecoder(); - - QList decoderString(int argc, char* argv[]); -}; - -#endif //COMMANDDECODER_H