36 lines
616 B
C++
Executable File
36 lines
616 B
C++
Executable File
|
|
#ifndef hwchk_H
|
|
#define hwchk_H
|
|
|
|
#include <stdint.h>
|
|
#include <QTabWidget>
|
|
#include <QObject>
|
|
#include "interfaces.h"
|
|
//#include "datIf.h"
|
|
#include <QDebug>
|
|
#include <QSharedMemory>
|
|
#include "hwapi.h"
|
|
|
|
//class QSharedMemory;
|
|
class hwChk : public QObject,
|
|
public hwinf
|
|
{
|
|
Q_OBJECT
|
|
// Q_PLUGIN_METADATA(IID "Atb.Psa2020.software.HWapi/1.0" ) //FILE "HWapi.json")
|
|
// Q_INTERFACES(hwinf)
|
|
//private:
|
|
// QSharedMemory *m_sharedMem;
|
|
|
|
public:
|
|
explicit hwChk(QWidget *parent = nullptr);
|
|
virtual ~hwChk();
|
|
|
|
|
|
public:
|
|
hwinf *HWaccess;
|
|
|
|
|
|
};
|
|
|
|
#endif
|