mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 13:59:52 +08:00
12 lines
174 B
C++
12 lines
174 B
C++
#include "vmainwindow.h"
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
VMainWindow w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|