diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2000-05-22 18:35:23 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2000-05-22 18:35:23 (GMT) |
commit | 745526b6e9683de926af27c4313574a514a3d7c3 (patch) | |
tree | 699a18c9a8c098fc845ba00c7eb093c73b497c5c /src/doxygen.h | |
parent | 4f5775494986411db398172e98380acb76d5e3e6 (diff) | |
download | Doxygen-745526b6e9683de926af27c4313574a514a3d7c3.zip Doxygen-745526b6e9683de926af27c4313574a514a3d7c3.tar.gz Doxygen-745526b6e9683de926af27c4313574a514a3d7c3.tar.bz2 |
Release-1.1.3-20000522
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; |