Browse Source

Folders created

master
Alireza 3 years ago
parent
commit
08cf3ced07
  1. 17
      Plx/include/LowLevel/Exception/HonaAlreadyStartedException.h
  2. 17
      Plx/include/LowLevel/Exception/HonaBusyException.h
  3. 17
      Plx/include/LowLevel/Exception/HonaException.h
  4. 17
      Plx/include/LowLevel/HonaLowLevelAPI.h
  5. 17
      Plx/include/LowLevel/HonaPacket.h
  6. 11
      Plx/include/Plx.h
  7. 17
      Plx/include/PlxController.h
  8. 17
      Plx/include/PlxWrapper.h
  9. 6
      Plx/src/LowLevel/Exception/HonaAlreadyStartedException.cpp
  10. 6
      Plx/src/LowLevel/Exception/HonaBusyException.cpp
  11. 6
      Plx/src/LowLevel/Exception/HonaException.cpp
  12. 6
      Plx/src/LowLevel/HonaLowLevelAPI.cpp
  13. 6
      Plx/src/LowLevel/HonaPacket.cpp
  14. 6
      Plx/src/Plx.cpp
  15. 6
      Plx/src/PlxController.cpp
  16. 6
      Plx/src/PlxWrapper.cpp

17
Plx/include/LowLevel/Exception/HonaAlreadyStartedException.h

@ -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

17
Plx/include/LowLevel/Exception/HonaBusyException.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

17
Plx/include/LowLevel/Exception/HonaException.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

17
Plx/include/LowLevel/HonaLowLevelAPI.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

17
Plx/include/LowLevel/HonaPacket.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

11
Plx/include/Plx.h

@ -1,11 +0,0 @@
#ifndef PLX_H
#define PLX_H
class Plx
{
public:
Plx();
};
#endif // PLX_H

17
Plx/include/PlxController.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

17
Plx/include/PlxWrapper.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

6
Plx/src/LowLevel/Exception/HonaAlreadyStartedException.cpp

@ -0,0 +1,6 @@
#include "../../../include/LowLevel/Exception/HonaAlreadyStartedException.h"
HonaAlreadyStartedException::HonaAlreadyStartedException(QObject *parent) : QObject(parent)
{
}

6
Plx/src/LowLevel/Exception/HonaBusyException.cpp

@ -0,0 +1,6 @@
#include "../../../include/LowLevel/Exception/HonaBusyException.h"
HonaBusyException::HonaBusyException(QObject *parent) : QObject(parent)
{
}

6
Plx/src/LowLevel/Exception/HonaException.cpp

@ -0,0 +1,6 @@
#include "../../../include/LowLevel/Exception/HonaException.h"
HonaException::HonaException(QObject *parent) : QObject(parent)
{
}

6
Plx/src/LowLevel/HonaLowLevelAPI.cpp

@ -0,0 +1,6 @@
#include "../../include/LowLevel/HonaLowLevelAPI.h"
HonaLowLevelAPI::HonaLowLevelAPI(QObject *parent) : QObject(parent)
{
}

6
Plx/src/LowLevel/HonaPacket.cpp

@ -0,0 +1,6 @@
#include "../../include/LowLevel/HonaPacket.h"
HonaPacket::HonaPacket(QObject *parent) : QObject(parent)
{
}

6
Plx/src/Plx.cpp

@ -1,6 +0,0 @@
#include "../include/Plx.h"
Plx::Plx()
{
}

6
Plx/src/PlxController.cpp

@ -1,6 +0,0 @@
#include "../include/PlxController.h"
PlxController::PlxController(QObject *parent) : QObject(parent)
{
}

6
Plx/src/PlxWrapper.cpp

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