Menu

[b73cc1]: / cteleeditdlg.h  Maximize  Restore  History

Download this file

34 lines (23 with data), 501 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef CTELEEDITDLG_H
#define CTELEEDITDLG_H
#include <QDialog>
namespace Ui {
class CTeleEditDlg;
}
class CTeleEditDlg : public QDialog
{
Q_OBJECT
public:
explicit CTeleEditDlg(QWidget *parent, bool bTele, double *par1, double *par2, QString *name);
~CTeleEditDlg();
protected:
double *m_par1;
double *m_par2;
QString *m_name;
private slots:
void on_pushButton_clicked();
void on_pushButton_2_clicked();
private:
Ui::CTeleEditDlg *ui;
};
#endif // CTELEEDITDLG_H