diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2002-08-11 20:15:10 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2002-08-11 20:15:10 (GMT) |
commit | d033ece659ef73379802b0c3d6b6f718f79b0436 (patch) | |
tree | 9e4492a0b5642a047896b46030df4d8a97e2f4f8 /src/util.h | |
parent | d40e1dfafbd027f004d0506d4ed072437e8c0a48 (diff) | |
download | Doxygen-d033ece659ef73379802b0c3d6b6f718f79b0436.zip Doxygen-d033ece659ef73379802b0c3d6b6f718f79b0436.tar.gz Doxygen-d033ece659ef73379802b0c3d6b6f718f79b0436.tar.bz2 |
Release-1.2.17-20020811
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -44,6 +44,7 @@ class Definition; struct TagInfo; class MemberNameInfoSDict; struct ListItemInfo; +class PageInfo; //-------------------------------------------------------------------- @@ -91,10 +92,27 @@ extern bool getDefs(const QCString &scopeName, bool checkCV=FALSE ); + +extern bool resolveRef(/* in */ const char *scName, + /* in */ const char *name, + /* in */ bool inSeeBlock, + /* out */ Definition **resContext, + /* out */ MemberDef **resMember + ); + +extern bool resolveLink(/* in */ const char *scName, + /* in */ const char *lr, + /* in */ bool inSeeBlock, + /* out */ Definition **resContext, + /* out */ PageInfo **resPageInfo, + /* out */ QCString &resAnchor + ); + extern bool generateRef(OutputDocInterface &od,const char *, const char *,bool inSeeBlock,const char * =0); extern bool generateLink(OutputDocInterface &od,const char *, const char *,bool inSeeBlock,const char *); + extern void generateFileRef(OutputDocInterface &od,const char *, const char *linkTxt=0); void writePageRef(OutputDocInterface &od,const char *cn,const char *mn); |