#include "smallchatwindow.h" #include "ui_smallchatwindow.h" smallChatWindow::smallChatWindow(QWidget *parent) : QWidget(parent), ui(new Ui::smallChatWindow) { ui->setupUi(this); } smallChatWindow::~smallChatWindow() { delete ui; }