forked from mirror/openmw-tes3mp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
460 B
C++
25 lines
460 B
C++
//
|
|
// Created by koncord on 07.01.17.
|
|
//
|
|
|
|
#ifndef NEWLAUNCHER_SERVERINFODIALOG_HPP
|
|
#define NEWLAUNCHER_SERVERINFODIALOG_HPP
|
|
|
|
#include "ui_ServerInfo.h"
|
|
|
|
class ServerInfoDialog : public QDialog, public Ui::Dialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ServerInfoDialog(QWidget *parent = 0);
|
|
virtual ~ServerInfoDialog();
|
|
void Server(QString addr);
|
|
public slots:
|
|
bool refresh();
|
|
private:
|
|
QString addr;
|
|
};
|
|
|
|
|
|
#endif //NEWLAUNCHER_SERVERINFODIALOG_HPP
|