mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-06 06:19:52 +08:00

Use QSettings to store notebooks info in INI format. Signed-off-by: Le Tan <tamlokveer@gmail.com>
13 lines
179 B
C++
13 lines
179 B
C++
#include "vmainwindow.h"
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
VMainWindow w;
|
|
w.show();
|
|
|
|
return app.exec();
|
|
}
|