From 08cf3ced078ce517c535bc2aa9e14f14b113eadf Mon Sep 17 00:00:00 2001 From: Alireza Date: Wed, 8 Dec 2021 13:12:51 +0330 Subject: [PATCH] Folders created --- .../Exception/HonaAlreadyStartedException.h | 17 +++++++++++++++++ .../LowLevel/Exception/HonaBusyException.h | 17 +++++++++++++++++ Plx/include/LowLevel/Exception/HonaException.h | 17 +++++++++++++++++ Plx/include/LowLevel/HonaLowLevelAPI.h | 17 +++++++++++++++++ Plx/include/LowLevel/HonaPacket.h | 17 +++++++++++++++++ Plx/include/Plx.h | 11 ----------- Plx/include/PlxController.h | 17 ----------------- Plx/include/PlxWrapper.h | 17 ----------------- .../Exception/HonaAlreadyStartedException.cpp | 6 ++++++ .../LowLevel/Exception/HonaBusyException.cpp | 6 ++++++ Plx/src/LowLevel/Exception/HonaException.cpp | 6 ++++++ Plx/src/LowLevel/HonaLowLevelAPI.cpp | 6 ++++++ Plx/src/LowLevel/HonaPacket.cpp | 6 ++++++ Plx/src/Plx.cpp | 6 ------ Plx/src/PlxController.cpp | 6 ------ Plx/src/PlxWrapper.cpp | 6 ------ 16 files changed, 115 insertions(+), 63 deletions(-) create mode 100644 Plx/include/LowLevel/Exception/HonaAlreadyStartedException.h create mode 100644 Plx/include/LowLevel/Exception/HonaBusyException.h create mode 100644 Plx/include/LowLevel/Exception/HonaException.h create mode 100644 Plx/include/LowLevel/HonaLowLevelAPI.h create mode 100644 Plx/include/LowLevel/HonaPacket.h delete mode 100644 Plx/include/Plx.h delete mode 100644 Plx/include/PlxController.h delete mode 100644 Plx/include/PlxWrapper.h create mode 100644 Plx/src/LowLevel/Exception/HonaAlreadyStartedException.cpp create mode 100644 Plx/src/LowLevel/Exception/HonaBusyException.cpp create mode 100644 Plx/src/LowLevel/Exception/HonaException.cpp create mode 100644 Plx/src/LowLevel/HonaLowLevelAPI.cpp create mode 100644 Plx/src/LowLevel/HonaPacket.cpp delete mode 100644 Plx/src/Plx.cpp delete mode 100644 Plx/src/PlxController.cpp delete mode 100644 Plx/src/PlxWrapper.cpp diff --git a/Plx/include/LowLevel/Exception/HonaAlreadyStartedException.h b/Plx/include/LowLevel/Exception/HonaAlreadyStartedException.h new file mode 100644 index 0000000..e0a484a --- /dev/null +++ b/Plx/include/LowLevel/Exception/HonaAlreadyStartedException.h @@ -0,0 +1,17 @@ +#ifndef HONAALREADYSTARTEDEXCEPTION_H +#define HONAALREADYSTARTEDEXCEPTION_H + +#include + +class HonaAlreadyStartedException : public QObject +{ + Q_OBJECT +public: + explicit HonaAlreadyStartedException(QObject *parent = nullptr); + +signals: + +public slots: +}; + +#endif // HONAALREADYSTARTEDEXCEPTION_H diff --git a/Plx/include/LowLevel/Exception/HonaBusyException.h b/Plx/include/LowLevel/Exception/HonaBusyException.h new file mode 100644 index 0000000..4440628 --- /dev/null +++ b/Plx/include/LowLevel/Exception/HonaBusyException.h @@ -0,0 +1,17 @@ +#ifndef HONABUSYEXCEPTION_H +#define HONABUSYEXCEPTION_H + +#include + +class HonaBusyException : public QObject +{ + Q_OBJECT +public: + explicit HonaBusyException(QObject *parent = nullptr); + +signals: + +public slots: +}; + +#endif // HONABUSYEXCEPTION_H diff --git a/Plx/include/LowLevel/Exception/HonaException.h b/Plx/include/LowLevel/Exception/HonaException.h new file mode 100644 index 0000000..034119a --- /dev/null +++ b/Plx/include/LowLevel/Exception/HonaException.h @@ -0,0 +1,17 @@ +#ifndef HONAEXCEPTION_H +#define HONAEXCEPTION_H + +#include + +class HonaException : public QObject +{ + Q_OBJECT +public: + explicit HonaException(QObject *parent = nullptr); + +signals: + +public slots: +}; + +#endif // HONAEXCEPTION_H diff --git a/Plx/include/LowLevel/HonaLowLevelAPI.h b/Plx/include/LowLevel/HonaLowLevelAPI.h new file mode 100644 index 0000000..38947e9 --- /dev/null +++ b/Plx/include/LowLevel/HonaLowLevelAPI.h @@ -0,0 +1,17 @@ +#ifndef HONALOWLEVELAPI_H +#define HONALOWLEVELAPI_H + +#include + +class HonaLowLevelAPI : public QObject +{ + Q_OBJECT +public: + explicit HonaLowLevelAPI(QObject *parent = nullptr); + +signals: + +public slots: +}; + +#endif // HONALOWLEVELAPI_H diff --git a/Plx/include/LowLevel/HonaPacket.h b/Plx/include/LowLevel/HonaPacket.h new file mode 100644 index 0000000..ef819c2 --- /dev/null +++ b/Plx/include/LowLevel/HonaPacket.h @@ -0,0 +1,17 @@ +#ifndef HONAPACKET_H +#define HONAPACKET_H + +#include + +class HonaPacket : public QObject +{ + Q_OBJECT +public: + explicit HonaPacket(QObject *parent = nullptr); + +signals: + +public slots: +}; + +#endif // HONAPACKET_H diff --git a/Plx/include/Plx.h b/Plx/include/Plx.h deleted file mode 100644 index cbc010a..0000000 --- a/Plx/include/Plx.h +++ /dev/null @@ -1,11 +0,0 @@ -#ifndef PLX_H -#define PLX_H - - -class Plx -{ -public: - Plx(); -}; - -#endif // PLX_H diff --git a/Plx/include/PlxController.h b/Plx/include/PlxController.h deleted file mode 100644 index 08e7cb6..0000000 --- a/Plx/include/PlxController.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef PLXCONTROLLER_H -#define PLXCONTROLLER_H - -#include - -class PlxController : public QObject -{ - Q_OBJECT -public: - explicit PlxController(QObject *parent = nullptr); - -signals: - -public slots: -}; - -#endif // PLXCONTROLLER_H diff --git a/Plx/include/PlxWrapper.h b/Plx/include/PlxWrapper.h deleted file mode 100644 index 52abbc2..0000000 --- a/Plx/include/PlxWrapper.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef PLXWRAPPER_H -#define PLXWRAPPER_H - -#include - -class PlxWrapper : public QObject -{ - Q_OBJECT -public: - explicit PlxWrapper(QObject *parent = nullptr); - -signals: - -public slots: -}; - -#endif // PLXWRAPPER_H diff --git a/Plx/src/LowLevel/Exception/HonaAlreadyStartedException.cpp b/Plx/src/LowLevel/Exception/HonaAlreadyStartedException.cpp new file mode 100644 index 0000000..9df262d --- /dev/null +++ b/Plx/src/LowLevel/Exception/HonaAlreadyStartedException.cpp @@ -0,0 +1,6 @@ +#include "../../../include/LowLevel/Exception/HonaAlreadyStartedException.h" + +HonaAlreadyStartedException::HonaAlreadyStartedException(QObject *parent) : QObject(parent) +{ + +} diff --git a/Plx/src/LowLevel/Exception/HonaBusyException.cpp b/Plx/src/LowLevel/Exception/HonaBusyException.cpp new file mode 100644 index 0000000..37f58f0 --- /dev/null +++ b/Plx/src/LowLevel/Exception/HonaBusyException.cpp @@ -0,0 +1,6 @@ +#include "../../../include/LowLevel/Exception/HonaBusyException.h" + +HonaBusyException::HonaBusyException(QObject *parent) : QObject(parent) +{ + +} diff --git a/Plx/src/LowLevel/Exception/HonaException.cpp b/Plx/src/LowLevel/Exception/HonaException.cpp new file mode 100644 index 0000000..0ce05d2 --- /dev/null +++ b/Plx/src/LowLevel/Exception/HonaException.cpp @@ -0,0 +1,6 @@ +#include "../../../include/LowLevel/Exception/HonaException.h" + +HonaException::HonaException(QObject *parent) : QObject(parent) +{ + +} diff --git a/Plx/src/LowLevel/HonaLowLevelAPI.cpp b/Plx/src/LowLevel/HonaLowLevelAPI.cpp new file mode 100644 index 0000000..ef38c38 --- /dev/null +++ b/Plx/src/LowLevel/HonaLowLevelAPI.cpp @@ -0,0 +1,6 @@ +#include "../../include/LowLevel/HonaLowLevelAPI.h" + +HonaLowLevelAPI::HonaLowLevelAPI(QObject *parent) : QObject(parent) +{ + +} diff --git a/Plx/src/LowLevel/HonaPacket.cpp b/Plx/src/LowLevel/HonaPacket.cpp new file mode 100644 index 0000000..15c70a3 --- /dev/null +++ b/Plx/src/LowLevel/HonaPacket.cpp @@ -0,0 +1,6 @@ +#include "../../include/LowLevel/HonaPacket.h" + +HonaPacket::HonaPacket(QObject *parent) : QObject(parent) +{ + +} diff --git a/Plx/src/Plx.cpp b/Plx/src/Plx.cpp deleted file mode 100644 index 709f6ba..0000000 --- a/Plx/src/Plx.cpp +++ /dev/null @@ -1,6 +0,0 @@ -#include "../include/Plx.h" - -Plx::Plx() -{ - -} diff --git a/Plx/src/PlxController.cpp b/Plx/src/PlxController.cpp deleted file mode 100644 index 93160dd..0000000 --- a/Plx/src/PlxController.cpp +++ /dev/null @@ -1,6 +0,0 @@ -#include "../include/PlxController.h" - -PlxController::PlxController(QObject *parent) : QObject(parent) -{ - -} diff --git a/Plx/src/PlxWrapper.cpp b/Plx/src/PlxWrapper.cpp deleted file mode 100644 index 5164ce3..0000000 --- a/Plx/src/PlxWrapper.cpp +++ /dev/null @@ -1,6 +0,0 @@ -#include "../include/PlxWrapper.h" - -PlxWrapper::PlxWrapper(QObject *parent) : QObject(parent) -{ - -}