2024-09-24 10:43:10 +00:00
|
|
|
#include "storypresent.h"
|
|
|
|
#include "dag_layout.h"
|
|
|
|
#include "xast_parse.h"
|
|
|
|
#include "dag_present.h"
|
|
|
|
#include "view_present.h"
|
|
|
|
#include <QDebug>
|
2024-10-03 12:37:24 +00:00
|
|
|
#include <qloggingcategory.h>
|
2024-09-24 10:43:10 +00:00
|
|
|
#include <QtWidgets/QApplication>
|
|
|
|
|
2024-10-03 12:37:24 +00:00
|
|
|
|
2024-09-24 10:43:10 +00:00
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
QApplication a(argc, argv);
|
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
}
|