mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-05 05:22:07 +08:00
33e84ad4b3
* init * lil more * revert that for now * update that too * update * update test * update * i hate translations
15 lines
239 B
C++
15 lines
239 B
C++
#pragma once
|
|
|
|
#include <QFrame>
|
|
#include <QWidget>
|
|
|
|
class WiFiPromptWidget : public QFrame {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit WiFiPromptWidget(QWidget* parent = 0);
|
|
|
|
signals:
|
|
void openSettings(int index = 0, const QString ¶m = "");
|
|
};
|