28 lines
403 B
C++
28 lines
403 B
C++
#ifndef PICUPLOADER_H
|
|
#define PICUPLOADER_H
|
|
|
|
#include <QObject>
|
|
#include "PICUploaderGui.h"
|
|
#include "HexFile.h"
|
|
|
|
class CPICUploader : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit CPICUploader(CPICUploaderGui *Gui);
|
|
int OpenHexFileRequest(QString FilePath);
|
|
|
|
int Start();
|
|
|
|
CPICUploaderGui *mPICUploaderGui;
|
|
|
|
CHexFile mHexFile;
|
|
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // PICUPLOADER_H
|