22 lines
432 B
C++
22 lines
432 B
C++
|
#include "mainwindow.h"
|
||
|
|
||
|
#include <QApplication>
|
||
|
|
||
|
#include <iostream>
|
||
|
|
||
|
#include <comdel/parser/parsecontext.h>
|
||
|
#include <comdel/parser/parserutil.h>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
/*
|
||
|
QApplication a(argc, argv);
|
||
|
MainWindow w;
|
||
|
w.show();
|
||
|
return a.exec();
|
||
|
*/
|
||
|
|
||
|
ParseContext parseContext;
|
||
|
loadLibraryFromFile(&parseContext, "/home/bbr/Documents/personal/projects/modeler/frisc_library.csl", std::cout);
|
||
|
}
|