diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-05-31 20:12:30 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-06-15 08:47:58 (GMT) |
commit | bd76ec600742936e6373ccbcdfc19966b44cb3ec (patch) | |
tree | 54abe9cfcb619e333e71cc2e9571eea244908150 /src/code.h | |
parent | 438375840da2b1ea19126f8d4b53f0bc71c62a68 (diff) | |
download | Doxygen-bd76ec600742936e6373ccbcdfc19966b44cb3ec.zip Doxygen-bd76ec600742936e6373ccbcdfc19966b44cb3ec.tar.gz Doxygen-bd76ec600742936e6373ccbcdfc19966b44cb3ec.tar.bz2 |
Bug 701314 - URLs are not created on C# classes in some cases
Diffstat (limited to 'src/code.h')
-rw-r--r-- | src/code.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -18,6 +18,8 @@ #ifndef CODE_H #define CODE_H +#include "types.h" + class CodeOutputInterface; class FileDef; class MemberDef; @@ -25,7 +27,7 @@ class QCString; class Definition; void parseCCode(CodeOutputInterface &,const char *,const QCString &, - bool ,const char *,FileDef *fd, + SrcLangExt lang, bool isExample, const char *exName,FileDef *fd, int startLine,int endLine,bool inlineFragment, MemberDef *memberDef,bool showLineNumbers,Definition *searchCtx); void resetCCodeParserState(); |