diff options
Diffstat (limited to 'src/doxygen.h')
-rw-r--r-- | src/doxygen.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/doxygen.h b/src/doxygen.h index 93a2a27..fc4b5ea 100644 --- a/src/doxygen.h +++ b/src/doxygen.h @@ -36,8 +36,14 @@ struct PageInfo { - PageInfo(const char *n,const char *d,const char *t) - { name=n; doc=d; title=t; } + PageInfo(const char *f, int l,const char *n,const char *d,const char *t) : + defFileName(f), defLine(l), name(n), doc(d), title(t) {} + + // where the page definition was found + QCString defFileName; + int defLine; + + // contents of the page QCString name; QCString doc; QCString title; |