diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-04-03 16:49:13 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-04-03 16:49:13 (GMT) |
commit | ba6357a253beeff03588578154bbc311bd986a47 (patch) | |
tree | f8bef618690d97139e586f102db4e418c3a5dff8 /src/outputgen.h | |
parent | eebd65ca04ebb2de83e99162713161fbdaa55a61 (diff) | |
download | Doxygen-ba6357a253beeff03588578154bbc311bd986a47.zip Doxygen-ba6357a253beeff03588578154bbc311bd986a47.tar.gz Doxygen-ba6357a253beeff03588578154bbc311bd986a47.tar.bz2 |
Release 2000-04-03
Diffstat (limited to 'src/outputgen.h')
-rw-r--r-- | src/outputgen.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/outputgen.h b/src/outputgen.h index 36e806d..a422338 100644 --- a/src/outputgen.h +++ b/src/outputgen.h @@ -10,7 +10,8 @@ * for any purpose. It is provided "as is" without express or implied warranty. * See the GNU General Public License for more details. * - * All output generated with Doxygen is not covered by this license. + * Documents produced by Doxygen are derivative works derived from the + * input used in their production; they are not affected by this license. * */ @@ -102,8 +103,12 @@ class OutputGenerator virtual void endMemberList() = 0; virtual void startMemberItem(int) = 0; virtual void endMemberItem(bool) = 0; - //virtual void memberGroupSpacing(bool) = 0; - //virtual void memberGroupSeparator() = 0; + virtual void startMemberGroupHeader() = 0; + virtual void endMemberGroupHeader() = 0; + virtual void startMemberGroupDocs() = 0; + virtual void endMemberGroupDocs() = 0; + virtual void startMemberGroup() = 0; + virtual void endMemberGroup(bool) = 0; virtual void insertMemberAlign() = 0; virtual void writeRuler() = 0; |