16 lines
251 B
C++
16 lines
251 B
C++
|
#include <QApplication>
|
||
|
|
||
|
#include "editorstyle.h"
|
||
|
#include "mainwindow.h"
|
||
|
|
||
|
int main(int argc, char* argv[]) {
|
||
|
QApplication app(argc, argv);
|
||
|
app.setStyle(new EditorStyle());
|
||
|
|
||
|
MainWindow window;
|
||
|
window.show();
|
||
|
|
||
|
return app.exec();
|
||
|
}
|
||
|
|