summaryrefslogtreecommitdiffstats
path: root/vhdlparser/VhdlParserIF.h
blob: d11389b22cd2120704d103d4e8abd00b89512df1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef VHDLPARSERIF
#define VHDLPARSERIF

#include "VhdlParser.h"

class VhdlParserIF
{
  public:
  static void  parseVhdlfile(const char* inputBuffer,bool inLine);

};
#endif