Browse Source

pointer

cleanAndupdate1
nasiCurious 2 years ago
parent
commit
7225534a28
  1. 2
      CommandDetector.pro.user
  2. 5
      logic/include/CommandDecoder.h
  3. 27
      logic/include/CommandDecoder.h.autosave

2
CommandDetector.pro.user

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject> <!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 4.10.0, 2022-11-19T13:55:01. --> <!-- Written by QtCreator 4.10.0, 2022-11-19T14:21:34. -->
<qtcreator> <qtcreator>
<data> <data>
<variable>EnvironmentId</variable> <variable>EnvironmentId</variable>

5
logic/include/CommandDecoder.h

@ -7,9 +7,8 @@
class CommandDecoder class CommandDecoder
{ {
private: private:
QList<CommandsType> decodedList; QList<CommandsType> _decodedList;
bool isNextItemValue = true; bool _isNextItemValue = true;
int j = 0;
int _argc; int _argc;
bool isCommand(char* argv); bool isCommand(char* argv);

27
logic/include/CommandDecoder.h.autosave

@ -1,27 +0,0 @@
#ifndef COMMANDDECODER_H
#define COMMANDDECODER_H
#include <QList>
#include "CommandsType.h"
class CommandDecoder
{
private:
QList<CommandsType> _decodedList;
bool _isNextItemValue = true;
int j = 0;
int _argc;
bool isCommand(char* argv);
void checkIfEnoughArgsAreProvided(int argc);
QList<CommandsType> CommandValueDecoder(char* argv[]);
void initCommandStrcut(char* argv, CommandsType& sample);
void checkIfNextItemShallBeValue(char* argv);
public:
CommandDecoder();
QList<CommandsType> decoderString(int argc, char* argv[]);
};
#endif //COMMANDDECODER_H
Loading…
Cancel
Save