summaryrefslogtreecommitdiffstats
path: root/src/outputgen.h
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2002-04-21 17:27:45 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2002-04-21 17:27:45 (GMT)
commitff31b2f109848ea3e08fb17d5821beb7af879193 (patch)
tree4859bfed167f695f5ce9e9c0f2f6f02313de2ed3 /src/outputgen.h
parentbc629c9003d59b736cc996a05b95bac8ab50123a (diff)
downloadDoxygen-ff31b2f109848ea3e08fb17d5821beb7af879193.zip
Doxygen-ff31b2f109848ea3e08fb17d5821beb7af879193.tar.gz
Doxygen-ff31b2f109848ea3e08fb17d5821beb7af879193.tar.bz2
Release-1.2.15-20020421
Diffstat (limited to 'src/outputgen.h')
-rw-r--r--src/outputgen.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/outputgen.h b/src/outputgen.h
index 2b963a4..2eecb44 100644
--- a/src/outputgen.h
+++ b/src/outputgen.h
@@ -163,11 +163,19 @@ class BaseOutputDocInterface
/*! Starts a fragment of preformatted text. This means that
* spacing, tabs and newlines should be kept in the output
*/
-
virtual void startPreFragment() = 0;
- /*! Ens a preformatted text fragment. */
-
+
+ /*! Ends a preformatted text fragment. */
virtual void endPreFragment() = 0;
+
+ /*! Starts a fragment of verbatim test. This is preformatted text,
+ * without any special internal structure.
+ */
+ virtual void startVerbatimFragment() = 0;
+
+ /*! Ends a verbatim text fragment. */
+ virtual void endVerbatimFragment() = 0;
+
/*! Writes a horizontal ruler to the output */
virtual void writeRuler() = 0;