34 lines
532 B
C++
34 lines
532 B
C++
#ifndef OTARCIKCAN_H
|
|
#define OTARCIKCAN_H
|
|
|
|
#include <QObject>
|
|
#include "MainWindow.h"
|
|
#include "PCANInterface.h"
|
|
#include "GeneralMessagesLogDispatcher.h"
|
|
#include "CANDatabase.h"
|
|
#include "CANAnalyzer.h"
|
|
|
|
class COtarcikCan : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit COtarcikCan(QObject *parent = 0);
|
|
~COtarcikCan();
|
|
CMainWindow w;
|
|
|
|
int Start();
|
|
|
|
private:
|
|
|
|
CCANAnalyzer *mCANAnalyzer;
|
|
CPCANInterface *mPCANInterface;
|
|
CCANDatabase *mCANDatabase;
|
|
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // OTARCIKCAN_H
|