ZeroTierOne/ZeroTierUI/network.h

28 lines
343 B
C
Raw Normal View History

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