This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/ZeroTierUI/network.h

28 lines
343 B
C
Raw Normal View History

2013-11-13 16:50:49 -05:00
#ifndef NETWORK_H
#define NETWORK_H
2013-11-18 12:01:33 -05:00
#include <QWidget>
2013-11-13 16:50:49 -05:00
namespace Ui {
class Network;
}
2013-11-18 12:01:33 -05:00
class Network : public QWidget
2013-11-13 16:50:49 -05:00
{
Q_OBJECT
public:
explicit Network(QWidget *parent = 0);
~Network();
2013-11-18 12:01:33 -05:00
private slots:
void on_leaveNetworkButton_clicked();
void on_networkIdPushButton_clicked();
2013-11-13 16:50:49 -05:00
private:
Ui::Network *ui;
};
#endif // NETWORK_H