##// 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:

r43:10bc9884d696 default
r45:c6b44a3b51fa default
Show More
elffilewidget.h
32 lines | 524 B | text/x-c | CLexer
#ifndef ELFFILEWIDGET_H
#define ELFFILEWIDGET_H
#include <QtWidgets/QWidget>
#include "elffile.h"
namespace Ui {
class elfFileWidget;
}
class elfFileWidget : public QWidget
{
Q_OBJECT
public:
elfFileWidget(QWidget *parent = 0);
~elfFileWidget();
public slots:
void updateElfFile(ElfFile* file);
void updateSymbols();
void updateSections();
private slots:
void sectionCellActivated(int row, int column);
private:
Ui::elfFileWidget *ui;
ElfFile* p_elf;
};
#endif // ELFFILEWIDGET_H