mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 13:15:43 +08:00
6e35a9e7a7
Note: this does not include the py file, To be added in a different commit - Added a better API to programatically add the overlay areas in the CDockManager
11 lines
172 B
C++
11 lines
172 B
C++
#include <mainwindow.h>
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
CMainWindow w;
|
|
w.show();
|
|
return a.exec();
|
|
}
|