33 lines
477 B
C
33 lines
477 B
C
|
#ifndef VVODMS_H
|
||
|
#define VVODMS_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <QLineEdit>
|
||
|
#include "widget.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class vvodMs;
|
||
|
}
|
||
|
|
||
|
class vvodMs : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit vvodMs(QWidget *parent = 0);
|
||
|
~vvodMs();
|
||
|
|
||
|
private slots:
|
||
|
void on_pushButton_2_clicked();
|
||
|
void closeEvent(QCloseEvent *event);
|
||
|
void on_pushButton_clicked();
|
||
|
|
||
|
private:
|
||
|
Ui::vvodMs *ui;
|
||
|
QString meteoSr;
|
||
|
QLineEdit *localLE[80];
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // VVODMS_H
|