blob: e5df98e7c65da107f0556ca351068bd8e916a21f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef VHDLCODE_H
#define VHDLCODE_H
#include "qtbc.h"
#include <stdio.h>
class CodeOutputInterface;
class FileDef;
class MemberDef;
void parseVhdlCode(CodeOutputInterface &,const char *,const QCString &,
bool ,const char *,FileDef *fd=0,
int startLine=-1,int endLine=-1,bool inlineFragment=FALSE,
MemberDef *memberDef=0,bool showLineNumbers=TRUE);
void resetVhdlCodeParserState();
void codeFreeVhdlScanner();
#endif
|