diff options
Diffstat (limited to 'src/outputlist.h')
-rw-r--r-- | src/outputlist.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/outputlist.h b/src/outputlist.h index 8e57ed6..86ceae3 100644 --- a/src/outputlist.h +++ b/src/outputlist.h @@ -169,6 +169,10 @@ class OutputList { forall(&OutputGenerator::startCodeFragment); } void endCodeFragment() { forall(&OutputGenerator::endCodeFragment); } + void startCodeLine() + { forall(&OutputGenerator::startCodeLine); } + void endCodeLine() + { forall(&OutputGenerator::endCodeLine); } void writeBoldString(const char *text) { forall(&OutputGenerator::writeBoldString,text); } void startEmphasis() @@ -187,6 +191,10 @@ class OutputList { forall(&OutputGenerator::startDoxyAnchor,fn,cn,anchor,name); } void endDoxyAnchor() { forall(&OutputGenerator::endDoxyAnchor); } + void startCodeAnchor(const char *label) + { forall(&OutputGenerator::startCodeAnchor,label); } + void endCodeAnchor() + { forall(&OutputGenerator::endCodeAnchor); } void writeLatexSpacing() { forall(&OutputGenerator::writeLatexSpacing); } //void writeLatexLabel(const char *scope,const char *anchor) @@ -308,6 +316,19 @@ class OutputList void writeImage(const char *n,const char *w,const char *h) { forall(&OutputGenerator::writeImage,n,w,h); } + void startDescTable() + { forall(&OutputGenerator::startDescTable); } + void endDescTable() + { forall(&OutputGenerator::endDescTable); } + void startDescTableTitle() + { forall(&OutputGenerator::startDescTableTitle); } + void endDescTableTitle() + { forall(&OutputGenerator::endDescTableTitle); } + void startDescTableData() + { forall(&OutputGenerator::startDescTableData); } + void endDescTableData() + { forall(&OutputGenerator::endDescTableData); } + private: void debug(); void clear(); |