18 lines
333 B
C++
18 lines
333 B
C++
|
#include "storypresent.h"
|
||
|
#include "dag_layout.h"
|
||
|
#include "xast_parse.h"
|
||
|
#include "dag_present.h"
|
||
|
#include "view_present.h"
|
||
|
#include <QDebug>
|
||
|
#include <QtWidgets/QApplication>
|
||
|
|
||
|
int main(int argc, char* argv[]) {
|
||
|
QApplication a(argc, argv);
|
||
|
|
||
|
for (auto idx = 0; idx < argc; ++idx) {
|
||
|
qDebug() << argv[idx];
|
||
|
}
|
||
|
|
||
|
return a.exec();
|
||
|
}
|