QtNovelUI/Testpad/main.cpp

21 lines
412 B
C++
Raw Normal View History

2022-11-17 08:26:05 +00:00
#include <QCoreApplication>
#include <QDebug>
#include <xmlconfig.h>
#include <xmlprojectmanager.h>
2022-11-29 03:47:12 +00:00
#include <QDebug>
#include "opstream.h"
2022-11-17 08:26:05 +00:00
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
2023-02-25 09:44:18 +00:00
QFile x("./test.dd");
qDebug() << x.open(QIODevice::WriteOnly);
qDebug() << x.exists();
qDebug() << x.open(QIODevice::WriteOnly);
qDebug() << x.exists();
2022-11-17 08:26:05 +00:00
return a.exec();
}