From 6911533e63e744d91e1ffd3b8d1a463822ef054f Mon Sep 17 00:00:00 2001 From: nasiCurious Date: Tue, 22 Nov 2022 10:56:19 +0330 Subject: [PATCH] starrt working with string --- CommandDetector.pro.user | 19 +++++++++---------- logic/include/BaseDecoder.h | 28 ++++++++++++++++++++++++++++ logic/include/CommandDecoder.h | 7 ++++--- logic/logic.pro | 2 ++ logic/src/BaseDecoder.cpp | 6 ++++++ 5 files changed, 49 insertions(+), 13 deletions(-) create mode 100644 logic/include/BaseDecoder.h create mode 100644 logic/src/BaseDecoder.cpp diff --git a/CommandDetector.pro.user b/CommandDetector.pro.user index e089a3a..6bb43a6 100644 --- a/CommandDetector.pro.user +++ b/CommandDetector.pro.user @@ -1,6 +1,6 @@ - + EnvironmentId @@ -67,7 +67,7 @@ qt.qt5.5131.gcc_64_kit 0 0 - 1 + 0 /home/hasis/Desktop/Nastaran/TRAIN/TaskLearning2/build-CommandDetector-Desktop_Qt_5_13_1_GCC_64bit-Debug @@ -304,9 +304,9 @@ 2 test - - Qt4ProjectManager.Qt4RunConfiguration:/home/hasis/Desktop/Nastaran/TRAIN/TaskLearning2/CommandDetector/test/test.pro - -node 3 -d 5 -g -f 2 + test2 + Qt4ProjectManager.Qt4RunConfiguration:/home/hasis/Desktop/Nastaran/TRAIN/TaskLearning3/CommandDetector/test/test.pro + 3768 false true @@ -370,17 +370,16 @@ 2 ui - - Qt4ProjectManager.Qt4RunConfiguration:/home/hasis/Desktop/Nastaran/TRAIN/TaskLearning2/CommandDetector/ui/ui.pro - -node 22 -f -g 33 + ui2 + Qt4ProjectManager.Qt4RunConfiguration:/home/hasis/Desktop/Nastaran/TRAIN/TaskLearning3/CommandDetector/ui/ui.pro + 3768 false true - false + true false false true - false /home/hasis/Desktop/Nastaran/TRAIN/TaskLearning2/build-CommandDetector-Desktop_Qt_5_13_1_GCC_64bit-Debug/ui diff --git a/logic/include/BaseDecoder.h b/logic/include/BaseDecoder.h new file mode 100644 index 0000000..f3edf96 --- /dev/null +++ b/logic/include/BaseDecoder.h @@ -0,0 +1,28 @@ +#ifndef BASEDECODER_H +#define BASEDECODER_H + +#include +#include "CommandsType.h" +template + +class A +{ + T x; + +public: + A() + { + //std::cout << "Constructor Called" << endl; + } +}; + +class BaseDecoder +{ +public: + BaseDecoder(); + template + virtual QList decoderString(); + virtual ~BaseDecoder(); +}; + +#endif //BASEDECODER_H diff --git a/logic/include/CommandDecoder.h b/logic/include/CommandDecoder.h index 93ee20b..aeff4ca 100644 --- a/logic/include/CommandDecoder.h +++ b/logic/include/CommandDecoder.h @@ -3,8 +3,9 @@ #include #include "CommandsType.h" +#include "BaseDecoder.h" -class CommandDecoder +class CommandDecoder : public BaseDecoder { private: QList _decodedList; @@ -19,8 +20,8 @@ private: public: CommandDecoder(); - - QList decoderString(int argc, char* argv[]); + QList decoderString() override; + QList decoderString(int argc, char* argv[]) override; }; #endif //COMMANDDECODER_H diff --git a/logic/logic.pro b/logic/logic.pro index 9480071..710d290 100644 --- a/logic/logic.pro +++ b/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 diff --git a/logic/src/BaseDecoder.cpp b/logic/src/BaseDecoder.cpp new file mode 100644 index 0000000..c0433cb --- /dev/null +++ b/logic/src/BaseDecoder.cpp @@ -0,0 +1,6 @@ +#include "../include/BaseDecoder.h" + +BaseDecoder::BaseDecoder() +{ + +}