mirror of
https://gitee.com/Zhaoxin59/my-chat_-client.git
synced 2026-02-13 16:41:48 +08:00
16 lines
250 B
C++
16 lines
250 B
C++
#include "mainwidget.h"
|
|
#include <QApplication>
|
|
|
|
#include "model/data.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
|
|
LOG() << "Hello";
|
|
|
|
MainWidget* w = MainWidget::getInstance();
|
|
w->show();
|
|
return a.exec();
|
|
}
|