34 lines
538 B
C++
34 lines
538 B
C++
#ifndef OTARCIKCAN_H
|
|
#define OTARCIKCAN_H
|
|
|
|
#include <QObject>
|
|
#include "MainWindow.h"
|
|
#include "PCANInterface.h"
|
|
#include "GeneralMessagesLogDispatcher.h"
|
|
#include "CANDevice.h"
|
|
#include <QList>
|
|
|
|
class COtarcikCan : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit COtarcikCan(QObject *parent = 0);
|
|
~COtarcikCan();
|
|
CMainWindow mMainWindow;
|
|
|
|
int Start();
|
|
|
|
|
|
int UpdateCANViewerDataRequest(QList<CCANMessage*> MsgList);
|
|
|
|
private:
|
|
QList<CCANDevice*> mCANDevicesList;
|
|
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // OTARCIKCAN_H
|