diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2008-10-12 11:30:16 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2008-10-12 11:30:16 (GMT) |
commit | cd8d9d90f0ded716840cd405d88c8b711428e899 (patch) | |
tree | df8e13e4cac8b44414890fbf25c4bcd702d5ebd3 /src/qhp.h | |
parent | 3102b81d682bf0b3b4dd50148434ab8e575a3d2e (diff) | |
download | Doxygen-cd8d9d90f0ded716840cd405d88c8b711428e899.zip Doxygen-cd8d9d90f0ded716840cd405d88c8b711428e899.tar.gz Doxygen-cd8d9d90f0ded716840cd405d88c8b711428e899.tar.bz2 |
Release-1.5.7.1-20081012
Diffstat (limited to 'src/qhp.h')
-rw-r--r-- | src/qhp.h | 18 |
1 files changed, 10 insertions, 8 deletions
@@ -31,12 +31,14 @@ class Qhp : public IndexIntf void finalize(); void incContentsDepth(); void decContentsDepth(); - void addContentsItem(bool isDir, char const * name, char const * ref, - char const * file, char const * anchor); - void addIndexItem(char const * level1, char const * level2, - char const * contRef, char const * memRef, - char const * anchor, const MemberDef * md); - void addIndexFile(char const * name); + void addContentsItem(bool isDir, const char * name, const char * ref, + const char * file, const char * anchor); + void addIndexItem(const char * level1, const char * level2, + const char * contRef, const char * memRef, + const char * anchor, const MemberDef * md); + void addIndexFile(const char * name); + void addImageFile(const char * name); + void addStyleSheetFile(const char * name); // END IndexIntf static QCString getQhpFileName(); @@ -44,8 +46,8 @@ class Qhp : public IndexIntf private: void handlePrevSection(); void clearPrevSection(); - void setPrevSection(char const * title, char const * ref, int level); - void addFile(char const * fileName); + void setPrevSection(const char * title, const char * ref, int level); + void addFile(const char * fileName); static QCString getFullProjectName(); |