summaryrefslogtreecommitdiffstats
path: root/src/vhdlcode.h
blob: 3865fc2588d3ae845dc8480305f522eb5f7fb0d6 (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);
void resetVhdlCodeParserState();
void codeFreeVhdlScanner();

#endif