22 lines
335 B
C++
22 lines
335 B
C++
#ifndef PCANINTERFACE_H
|
|
#define PCANINTERFACE_H
|
|
|
|
#include <QObject>
|
|
#include <windows.h>
|
|
#include "PCANBasic.h"
|
|
|
|
class CPCANInterface : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit CPCANInterface(QObject *parent = 0);
|
|
int Init();
|
|
int DeInit(unsigned short Channel);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // PCANINTERFACE_H
|