diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2002-10-20 18:23:06 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2002-10-20 18:23:06 (GMT) |
commit | dc404b516e366ca10ad325d399ef0bd47d065863 (patch) | |
tree | 63a7ba72ad4f8318f818aebfef29beee5811c241 /src/outputgen.h | |
parent | 6bc4cd0ea321e784be64022fea5013e1b181a593 (diff) | |
download | Doxygen-dc404b516e366ca10ad325d399ef0bd47d065863.zip Doxygen-dc404b516e366ca10ad325d399ef0bd47d065863.tar.gz Doxygen-dc404b516e366ca10ad325d399ef0bd47d065863.tar.bz2 |
Release-1.2.18-20021020
Diffstat (limited to 'src/outputgen.h')
-rw-r--r-- | src/outputgen.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/outputgen.h b/src/outputgen.h index 104a09b..b82c0af 100644 --- a/src/outputgen.h +++ b/src/outputgen.h @@ -254,8 +254,6 @@ class OutputGenerator : public BaseOutputDocInterface /////////////////////////////////////////////////////////////// // generic generator methods /////////////////////////////////////////////////////////////// - virtual OutputGenerator *copy() = 0; - //virtual void append(const OutputGenerator *) = 0; virtual void enable() = 0; virtual void disable() = 0; virtual void enableIf(OutputType o) = 0; @@ -263,8 +261,6 @@ class OutputGenerator : public BaseOutputDocInterface virtual void disableIfNot(OutputType o) = 0; virtual bool isEnabled(OutputType o) = 0; virtual OutputGenerator *get(OutputType o) = 0; - //void clear() { b.close(); a.resize(0); b.setBuffer(a); - // b.open(IO_WriteOnly); t.setDevice(&b); } void startPlainFile(const char *name); void endPlainFile(); QCString getContents() const; @@ -370,8 +366,8 @@ class OutputGenerator : public BaseOutputDocInterface /*! \brief Interface used for generating documentation. * - * This abstract class is used by the documentation block - * parser to generate the output for a specific format. + * This abstract class is used by several functions + * to generate the output for a specific format. * This interface contains some state saving and changing * functions for dealing with format specific output. */ @@ -383,7 +379,7 @@ class OutputDocInterface : public BaseOutputDocInterface /*! Create a new output generator. This can later by appended * to the current one using append(). */ - virtual OutputDocInterface *clone() = 0; + //virtual OutputDocInterface *clone() = 0; /*! Disables all output formats except format \a o * (useful for OutputList only) |