##// END OF EJS Templates
Elf Symbol enumeration working, elf update buggy!
Elf Symbol enumeration working, elf update buggy!

File last commit:

r42:302baaf8abc1 default
r42:302baaf8abc1 default
Show More
elffilewidget.h
28 lines | 429 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();
private:
Ui::elfFileWidget *ui;
ElfFile* p_elf;
};
#endif // ELFFILEWIDGET_H