22 lines
319 B
C++
22 lines
319 B
C++
#ifndef SERVERPROPERTIES_H
|
|
#define SERVERPROPERTIES_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class ServerProperties;
|
|
}
|
|
|
|
class ServerProperties : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ServerProperties(QWidget *parent = 0);
|
|
~ServerProperties();
|
|
|
|
private:
|
|
Ui::ServerProperties *ui;
|
|
};
|
|
|
|
#endif // SERVERPROPERTIES_H
|