YULTek/Otarcik_CAN/Sources/OtarcikCan.h
2023-01-06 12:46:35 -05:00

25 lines
331 B
C++

#ifndef OTARCIKCAN_H
#define OTARCIKCAN_H
#include <QObject>
#include "PCANInterface.h"
class COtarcikCan : public QObject
{
Q_OBJECT
public:
explicit COtarcikCan(QObject *parent = 0);
~COtarcikCan();
int Start();
private:
CPCANInterface *mPCANInterface;
signals:
public slots:
};
#endif // OTARCIKCAN_H