Browse Source

starrt working with string

commandDecoderString
nasiCurious 2 years ago
parent
commit
6911533e63
  1. 19
      CommandDetector.pro.user
  2. 28
      logic/include/BaseDecoder.h
  3. 7
      logic/include/CommandDecoder.h
  4. 2
      logic/logic.pro
  5. 6
      logic/src/BaseDecoder.cpp

19
CommandDetector.pro.user

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 4.10.0, 2022-11-19T14:21:34. -->
<!-- Written by QtCreator 4.10.0, 2022-11-20T18:21:25. -->
<qtcreator>
<data>
<variable>EnvironmentId</variable>
@ -67,7 +67,7 @@
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">qt.qt5.5131.gcc_64_kit</value>
<value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
<value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
<value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">1</value>
<value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/hasis/Desktop/Nastaran/TRAIN/TaskLearning2/build-CommandDetector-Desktop_Qt_5_13_1_GCC_64bit-Debug</value>
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
@ -304,9 +304,9 @@
<value type="int" key="PE.EnvironmentAspect.Base">2</value>
<valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">test</value>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4RunConfiguration:/home/hasis/Desktop/Nastaran/TRAIN/TaskLearning2/CommandDetector/test/test.pro</value>
<value type="QString" key="RunConfiguration.Arguments">-node 3 -d 5 -g -f 2</value>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">test2</value>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4RunConfiguration:/home/hasis/Desktop/Nastaran/TRAIN/TaskLearning3/CommandDetector/test/test.pro</value>
<value type="QString" key="RunConfiguration.Arguments"></value>
<value type="uint" key="RunConfiguration.QmlDebugServerPort">3768</value>
<value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
<value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
@ -370,17 +370,16 @@
<value type="int" key="PE.EnvironmentAspect.Base">2</value>
<valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">ui</value>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4RunConfiguration:/home/hasis/Desktop/Nastaran/TRAIN/TaskLearning2/CommandDetector/ui/ui.pro</value>
<value type="QString" key="RunConfiguration.Arguments">-node 22 -f -g 33</value>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">ui2</value>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4RunConfiguration:/home/hasis/Desktop/Nastaran/TRAIN/TaskLearning3/CommandDetector/ui/ui.pro</value>
<value type="QString" key="RunConfiguration.Arguments"></value>
<value type="uint" key="RunConfiguration.QmlDebugServerPort">3768</value>
<value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
<value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
<value type="bool" key="RunConfiguration.UseLibrarySearchPath">false</value>
<value type="bool" key="RunConfiguration.UseLibrarySearchPath">true</value>
<value type="bool" key="RunConfiguration.UseMultiProcess">false</value>
<value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
<value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
<value type="bool" key="RunConfiguration.UseTerminal">false</value>
<value type="QString" key="RunConfiguration.WorkingDirectory"></value>
<value type="QString" key="RunConfiguration.WorkingDirectory.default">/home/hasis/Desktop/Nastaran/TRAIN/TaskLearning2/build-CommandDetector-Desktop_Qt_5_13_1_GCC_64bit-Debug/ui</value>
</valuemap>

28
logic/include/BaseDecoder.h

@ -0,0 +1,28 @@
#ifndef BASEDECODER_H
#define BASEDECODER_H
#include <QList>
#include "CommandsType.h"
template<class T>
class A
{
T x;
public:
A()
{
//std::cout << "Constructor Called" << endl;
}
};
class BaseDecoder
{
public:
BaseDecoder();
template<typename T, typename ... Types>
virtual QList<CommandsType> decoderString();
virtual ~BaseDecoder();
};
#endif //BASEDECODER_H

7
logic/include/CommandDecoder.h

@ -3,8 +3,9 @@
#include <QList>
#include "CommandsType.h"
#include "BaseDecoder.h"
class CommandDecoder
class CommandDecoder : public BaseDecoder
{
private:
QList<CommandsType> _decodedList;
@ -19,8 +20,8 @@ private:
public:
CommandDecoder();
QList<CommandsType> decoderString(int argc, char* argv[]);
QList<CommandsType> decoderString() override;
QList<CommandsType> decoderString(int argc, char* argv[]) override;
};
#endif //COMMANDDECODER_H

2
logic/logic.pro

@ -18,9 +18,11 @@ DEFINES += QT_DEPRECATED_WARNINGS
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
src/BaseDecoder.cpp \
src/CommandDecoder.cpp
HEADERS += \
include/BaseDecoder.h \
include/CommandDecoder.h \
include/CommandsType.h

6
logic/src/BaseDecoder.cpp

@ -0,0 +1,6 @@
#include "../include/BaseDecoder.h"
BaseDecoder::BaseDecoder()
{
}
Loading…
Cancel
Save