mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
28 lines
475 B
C++
28 lines
475 B
C++
#ifndef LOBBYROOMREQUEST_MOC_H
|
|
#define LOBBYROOMREQUEST_MOC_H
|
|
|
|
#include <QDialog>
|
|
#include "lobby.h"
|
|
|
|
namespace Ui {
|
|
class LobbyRoomRequest;
|
|
}
|
|
|
|
class LobbyRoomRequest : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit LobbyRoomRequest(SocketLobby & socket, const QString & room, QWidget *parent = nullptr);
|
|
~LobbyRoomRequest();
|
|
|
|
private slots:
|
|
void on_buttonBox_accepted();
|
|
|
|
private:
|
|
Ui::LobbyRoomRequest *ui;
|
|
SocketLobby & socketLobby;
|
|
};
|
|
|
|
#endif // LOBBYROOMREQUEST_MOC_H
|