blob: dab262441acbd50a48ba7f2fc1be958feaafcb36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef VHDLCODE_H
#define VHDLCODE_H
class CodeOutputInterface;
class FileDef;
class MemberDef;
void parseVhdlCode(CodeOutputInterface &,const char *,const QCString &,
bool ,const char *,FileDef *fd,
int startLine,int endLine,bool inlineFragment,
MemberDef *memberDef,bool showLineNumbers,Definition *searchCtx);
void resetVhdlCodeParserState();
void codeFreeVhdlScanner();
#endif
|