diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-11-11 19:20:29 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-11-11 19:20:29 (GMT) |
commit | 613b33d7ce00236865f41d77e4e39b37dcbef17b (patch) | |
tree | 7d80c173dcecb625806ece76ccd2210dca925e13 /addon/xmlparse/compoundhandler.h | |
parent | a29cfb7d102b893c56c1342fc738b788fc4885cf (diff) | |
download | Doxygen-613b33d7ce00236865f41d77e4e39b37dcbef17b.zip Doxygen-613b33d7ce00236865f41d77e4e39b37dcbef17b.tar.gz Doxygen-613b33d7ce00236865f41d77e4e39b37dcbef17b.tar.bz2 |
Release-1.2.11-20011111
Diffstat (limited to 'addon/xmlparse/compoundhandler.h')
-rw-r--r-- | addon/xmlparse/compoundhandler.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/addon/xmlparse/compoundhandler.h b/addon/xmlparse/compoundhandler.h index 420cac6..5191a2f 100644 --- a/addon/xmlparse/compoundhandler.h +++ b/addon/xmlparse/compoundhandler.h @@ -24,6 +24,7 @@ #include "doxmlintf.h" class DocHandler; +class ProgramListingHandler; class CompoundHandler : public ICompound, public BaseHandler<CompoundHandler> { @@ -37,6 +38,7 @@ class CompoundHandler : public ICompound, public BaseHandler<CompoundHandler> virtual void startBriefDesc(const QXmlAttributes& attrib); virtual void startDetailedDesc(const QXmlAttributes& attrib); virtual void startLocation(const QXmlAttributes& attrib); + virtual void startProgramListing(const QXmlAttributes& attrib); CompoundHandler(IBaseHandler *parent); virtual ~CompoundHandler(); @@ -72,6 +74,7 @@ class CompoundHandler : public ICompound, public BaseHandler<CompoundHandler> IBaseHandler *m_parent; DocHandler *m_brief; DocHandler *m_detailed; + ProgramListingHandler *m_programListing; QString m_id; QString m_kind; QString m_name; |