chatroomselect.cpp 243 Bytes
#include "chatroomselect.h"
#include "ui_chatroomselect.h"

ChatroomSelect::ChatroomSelect(QWidget *parent) :
    QDialog(parent),
    ui(new Ui::ChatroomSelect)
{
    ui->setupUi(this);
}

ChatroomSelect::~ChatroomSelect()
{
    delete ui;
}