store headers only once, refs #7
This commit is contained in:
@@ -1,22 +1,22 @@
|
||||
#ifndef PINDIALOG_H
|
||||
#define PINDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
class QLabel;
|
||||
class QLineEdit;
|
||||
class QPushButton;
|
||||
|
||||
class PinDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
PinDialog(QWidget *parent = 0);
|
||||
QString pin() const;
|
||||
private:
|
||||
QLabel* label;
|
||||
QLineEdit* lineEdit;
|
||||
QPushButton* okButton;
|
||||
QPushButton* cancelButton;
|
||||
};
|
||||
|
||||
#endif // PINDIALOG_H
|
||||
#ifndef PINDIALOG_H
|
||||
#define PINDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
class QLabel;
|
||||
class QLineEdit;
|
||||
class QPushButton;
|
||||
|
||||
class PinDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
PinDialog(QWidget *parent = 0);
|
||||
QString pin() const;
|
||||
private:
|
||||
QLabel* label;
|
||||
QLineEdit* lineEdit;
|
||||
QPushButton* okButton;
|
||||
QPushButton* cancelButton;
|
||||
};
|
||||
|
||||
#endif // PINDIALOG_H
|
||||
|
Reference in New Issue
Block a user