##// END OF EJS Templates
Working snapshot.
Working snapshot.

File last commit:

r0:1aa783210b8e default
r5:483cfe27e044 Working snapshot default
Show More
regsexplorercfg.h
28 lines | 513 B | text/x-c | CLexer
#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