WsParser_VS/StoryPresent/main.cpp

16 lines
294 B
C++

#include "storypresent.h"
#include "dag_layout.h"
#include "xast_parse.h"
#include "dag_present.h"
#include "view_present.h"
#include <QDebug>
#include <qloggingcategory.h>
#include <QtWidgets/QApplication>
int main(int argc, char* argv[]) {
QApplication a(argc, argv);
return a.exec();
}