##// END OF EJS Templates
SREC File parser working....
SREC File parser working. SREC Viewer working. Added toSREC function in elfFile class. codeFragment to SREC converter also working. All these objects also have Python bindings.

File last commit:

r45:c6b44a3b51fa default
r45:c6b44a3b51fa default
Show More
srecfilewidget.h
31 lines | 507 B | text/x-c | CLexer
#ifndef SRECFILEWIDGET_H
#define SRECFILEWIDGET_H
#include <QWidget>
#include "srecfile.h"
namespace Ui {
class srecFileWidget;
}
class srecFileWidget : public QWidget
{
Q_OBJECT
public:
explicit srecFileWidget(QWidget *parent = 0);
~srecFileWidget();
public slots:
void updatSrecFile(srecFile* file);
void updateRecords();
private slots:
void recordCellActivated(int row, int column);
private:
Ui::srecFileWidget *ui;
srecFile* p_srec;
};
#endif // SRECFILEWIDGET_H