##// END OF EJS Templates
First Init, flexer seems ok -> it generates a flat list of tokens.
First Init, flexer seems ok -> it generates a flat list of tokens.

File last commit:

r0:0a6f571607b8 default
r0:0a6f571607b8 default
Show More
main.cpp
12 lines | 245 B | text/x-c | CppLexer
#include <QCoreApplication>
#include <vhdl_file.h>
int main(int argc, char *argv[])
{
// extern int yydebug;
// yydebug = 1;
QCoreApplication a(argc, argv);
VHDL_Tools::VHDL_File test;
test.parseFile(argv[1]);
return 0;
}