27 lines
322 B
C
27 lines
322 B
C
|
#ifndef TABLE2Z_H
|
||
|
#define TABLE2Z_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class table2Z;
|
||
|
}
|
||
|
|
||
|
class table2Z : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit table2Z(QWidget *parent = 0);
|
||
|
~table2Z();
|
||
|
|
||
|
|
||
|
private slots:
|
||
|
void on_lineEdit_returnPressed();
|
||
|
|
||
|
private:
|
||
|
Ui::table2Z *ui;
|
||
|
};
|
||
|
|
||
|
#endif // TABLE2Z_H
|