diff options
Diffstat (limited to 'vhdlparser/VhdlParserIF.h')
-rw-r--r-- | vhdlparser/VhdlParserIF.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vhdlparser/VhdlParserIF.h b/vhdlparser/VhdlParserIF.h new file mode 100644 index 0000000..d11389b --- /dev/null +++ b/vhdlparser/VhdlParserIF.h @@ -0,0 +1,12 @@ +#ifndef VHDLPARSERIF +#define VHDLPARSERIF + +#include "VhdlParser.h" + +class VhdlParserIF +{ + public: + static void parseVhdlfile(const char* inputBuffer,bool inLine); + +}; +#endif |