21 lines
355 B
C++
21 lines
355 B
C++
#include <QCoreApplication>
|
|
#include <QDebug>
|
|
#include <xmlconfig.h>
|
|
#include <xmlprojectmanager.h>
|
|
#include <QDebug>
|
|
|
|
#include "opstream.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QCoreApplication a(argc, argv);
|
|
|
|
try {
|
|
throw new std::exception();
|
|
} catch (std::exception *) {
|
|
qDebug() << "catched";
|
|
}
|
|
|
|
return a.exec();
|
|
}
|