QtNovelUI/Testpad/main.cpp

21 lines
355 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 07:20:07 +00:00
try {
throw new std::exception();
} catch (std::exception *) {
qDebug() << "catched";
}
2022-11-17 08:26:05 +00:00
return a.exec();
}