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/index.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/index.h')
-rw-r--r-- | src/index.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/index.h b/src/index.h index ef8b543..ef730be 100644 --- a/src/index.h +++ b/src/index.h @@ -39,6 +39,8 @@ class IndexIntf virtual void addIndexItem(const char *level1, const char *level2, const char *contRef, const char *memRef, const char *anchor,const MemberDef *md) = 0; virtual void addIndexFile(const char *name) = 0; + virtual void addImageFile(const char *name) = 0; + virtual void addStyleSheetFile(const char *name) = 0; }; class IndexList : public IndexIntf @@ -92,6 +94,10 @@ class IndexList : public IndexIntf (&IndexIntf::addIndexItem,level1,level2,contRef,memRef,anchor,md); } void addIndexFile(const char *name) { foreach<const char *>(&IndexIntf::addIndexFile,name); } + void addImageFile(const char *name) + { foreach<const char *>(&IndexIntf::addImageFile,name); } + void addStyleSheetFile(const char *name) + { foreach<const char *>(&IndexIntf::addStyleSheetFile,name); } }; |