kopia lustrzana https://gitlab.com/eliggett/wfview
23 wiersze
315 B
C
23 wiersze
315 B
C
|
#ifndef SATELLITESETUP_H
|
||
|
#define SATELLITESETUP_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class satelliteSetup;
|
||
|
}
|
||
|
|
||
|
class satelliteSetup : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit satelliteSetup(QWidget *parent = 0);
|
||
|
~satelliteSetup();
|
||
|
|
||
|
private:
|
||
|
Ui::satelliteSetup *ui;
|
||
|
};
|
||
|
|
||
|
#endif // SATELLITESETUP_H
|