Alireza
3 years ago
16 changed files with 115 additions and 63 deletions
@ -0,0 +1,17 @@ |
|||
#ifndef HONAALREADYSTARTEDEXCEPTION_H |
|||
#define HONAALREADYSTARTEDEXCEPTION_H |
|||
|
|||
#include <QObject> |
|||
|
|||
class HonaAlreadyStartedException : public QObject |
|||
{ |
|||
Q_OBJECT |
|||
public: |
|||
explicit HonaAlreadyStartedException(QObject *parent = nullptr); |
|||
|
|||
signals: |
|||
|
|||
public slots: |
|||
}; |
|||
|
|||
#endif // HONAALREADYSTARTEDEXCEPTION_H
|
@ -0,0 +1,17 @@ |
|||
#ifndef HONABUSYEXCEPTION_H |
|||
#define HONABUSYEXCEPTION_H |
|||
|
|||
#include <QObject> |
|||
|
|||
class HonaBusyException : public QObject |
|||
{ |
|||
Q_OBJECT |
|||
public: |
|||
explicit HonaBusyException(QObject *parent = nullptr); |
|||
|
|||
signals: |
|||
|
|||
public slots: |
|||
}; |
|||
|
|||
#endif // HONABUSYEXCEPTION_H
|
@ -0,0 +1,17 @@ |
|||
#ifndef HONAEXCEPTION_H |
|||
#define HONAEXCEPTION_H |
|||
|
|||
#include <QObject> |
|||
|
|||
class HonaException : public QObject |
|||
{ |
|||
Q_OBJECT |
|||
public: |
|||
explicit HonaException(QObject *parent = nullptr); |
|||
|
|||
signals: |
|||
|
|||
public slots: |
|||
}; |
|||
|
|||
#endif // HONAEXCEPTION_H
|
@ -0,0 +1,17 @@ |
|||
#ifndef HONALOWLEVELAPI_H |
|||
#define HONALOWLEVELAPI_H |
|||
|
|||
#include <QObject> |
|||
|
|||
class HonaLowLevelAPI : public QObject |
|||
{ |
|||
Q_OBJECT |
|||
public: |
|||
explicit HonaLowLevelAPI(QObject *parent = nullptr); |
|||
|
|||
signals: |
|||
|
|||
public slots: |
|||
}; |
|||
|
|||
#endif // HONALOWLEVELAPI_H
|
@ -0,0 +1,17 @@ |
|||
#ifndef HONAPACKET_H |
|||
#define HONAPACKET_H |
|||
|
|||
#include <QObject> |
|||
|
|||
class HonaPacket : public QObject |
|||
{ |
|||
Q_OBJECT |
|||
public: |
|||
explicit HonaPacket(QObject *parent = nullptr); |
|||
|
|||
signals: |
|||
|
|||
public slots: |
|||
}; |
|||
|
|||
#endif // HONAPACKET_H
|
@ -1,11 +0,0 @@ |
|||
#ifndef PLX_H |
|||
#define PLX_H |
|||
|
|||
|
|||
class Plx |
|||
{ |
|||
public: |
|||
Plx(); |
|||
}; |
|||
|
|||
#endif // PLX_H
|
@ -1,17 +0,0 @@ |
|||
#ifndef PLXCONTROLLER_H |
|||
#define PLXCONTROLLER_H |
|||
|
|||
#include <QObject> |
|||
|
|||
class PlxController : public QObject |
|||
{ |
|||
Q_OBJECT |
|||
public: |
|||
explicit PlxController(QObject *parent = nullptr); |
|||
|
|||
signals: |
|||
|
|||
public slots: |
|||
}; |
|||
|
|||
#endif // PLXCONTROLLER_H
|
@ -1,17 +0,0 @@ |
|||
#ifndef PLXWRAPPER_H |
|||
#define PLXWRAPPER_H |
|||
|
|||
#include <QObject> |
|||
|
|||
class PlxWrapper : public QObject |
|||
{ |
|||
Q_OBJECT |
|||
public: |
|||
explicit PlxWrapper(QObject *parent = nullptr); |
|||
|
|||
signals: |
|||
|
|||
public slots: |
|||
}; |
|||
|
|||
#endif // PLXWRAPPER_H
|
@ -0,0 +1,6 @@ |
|||
#include "../../../include/LowLevel/Exception/HonaAlreadyStartedException.h" |
|||
|
|||
HonaAlreadyStartedException::HonaAlreadyStartedException(QObject *parent) : QObject(parent) |
|||
{ |
|||
|
|||
} |
@ -0,0 +1,6 @@ |
|||
#include "../../../include/LowLevel/Exception/HonaBusyException.h" |
|||
|
|||
HonaBusyException::HonaBusyException(QObject *parent) : QObject(parent) |
|||
{ |
|||
|
|||
} |
@ -0,0 +1,6 @@ |
|||
#include "../../../include/LowLevel/Exception/HonaException.h" |
|||
|
|||
HonaException::HonaException(QObject *parent) : QObject(parent) |
|||
{ |
|||
|
|||
} |
@ -0,0 +1,6 @@ |
|||
#include "../../include/LowLevel/HonaLowLevelAPI.h" |
|||
|
|||
HonaLowLevelAPI::HonaLowLevelAPI(QObject *parent) : QObject(parent) |
|||
{ |
|||
|
|||
} |
@ -0,0 +1,6 @@ |
|||
#include "../../include/LowLevel/HonaPacket.h" |
|||
|
|||
HonaPacket::HonaPacket(QObject *parent) : QObject(parent) |
|||
{ |
|||
|
|||
} |
@ -1,6 +0,0 @@ |
|||
#include "../include/Plx.h" |
|||
|
|||
Plx::Plx() |
|||
{ |
|||
|
|||
} |
@ -1,6 +0,0 @@ |
|||
#include "../include/PlxController.h" |
|||
|
|||
PlxController::PlxController(QObject *parent) : QObject(parent) |
|||
{ |
|||
|
|||
} |
@ -1,6 +0,0 @@ |
|||
#include "../include/PlxWrapper.h" |
|||
|
|||
PlxWrapper::PlxWrapper(QObject *parent) : QObject(parent) |
|||
{ |
|||
|
|||
} |
Loading…
Reference in new issue