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