mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-12-27 00:11:33 +08:00
12 lines
173 B
C++
12 lines
173 B
C++
|
#include "mainwindow.h"
|
||
|
|
||
|
#include <QApplication>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QApplication a(argc, argv);
|
||
|
CMainWindow w;
|
||
|
w.show();
|
||
|
return a.exec();
|
||
|
}
|