##// END OF EJS Templates
Added lost SocExplorerPlot wrapper and win32 libelf binary.
Added lost SocExplorerPlot wrapper and win32 libelf binary.

File last commit:

r0:1aa783210b8e default
r7:1abdb58baffd default
Show More
regsexplorercfg.h
28 lines | 513 B | text/x-c | CLexer
Jeandet Alexis
First init of SocExplorer Repository.
r0 #ifndef REGSEXPLORERCFG_H
#define REGSEXPLORERCFG_H
#include <socexplorerengine.h>
#include <QWidget>
#include <QGridLayout>
#include <QCheckBox>
#include <QList>
class regsExplorerCfg : public QWidget
{
Q_OBJECT
public:
explicit regsExplorerCfg(QWidget *parent = 0);
signals:
public slots:
void updateRegList();
QCheckBox* addDev(socExplorerEnumDevice *device);
void clear();
private:
QGridLayout* mainLayout;
QList<QCheckBox*>* regsList;
};
#endif // REGSEXPLORERCFG_H