summaryrefslogtreecommitdiffstats
path: root/vhdlparser/VhdlParserIF.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-08-02 10:09:32 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-08-02 10:09:32 (GMT)
commitbc7aedbff07ac657ef60ffca5423fe2d054962ca (patch)
tree48f2ed563e0e272f106cefcff352bb865f30fcc7 /vhdlparser/VhdlParserIF.h
parentc9d816aaf20c24c624407ba1c2eb4e00eff0c02f (diff)
parent36122e49ed1d9e640b1ceca52536ec7c55e10474 (diff)
downloadDoxygen-bc7aedbff07ac657ef60ffca5423fe2d054962ca.zip
Doxygen-bc7aedbff07ac657ef60ffca5423fe2d054962ca.tar.gz
Doxygen-bc7aedbff07ac657ef60ffca5423fe2d054962ca.tar.bz2
Merge branch 'vhdl'
Diffstat (limited to 'vhdlparser/VhdlParserIF.h')
-rw-r--r--vhdlparser/VhdlParserIF.h12
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