]> err.no Git - sope/blob - sope-xml/STXSaxDriver/StructuredTextBodyElement+SAX.m
Add libxml2-dev to libsope-xml4.7-dev deps
[sope] / sope-xml / STXSaxDriver / StructuredTextBodyElement+SAX.m
1 /*
2   Copyright (C) 2000-2005 SKYRIX Software AG
3
4   This file is part of SOPE.
5
6   SOPE is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with SOPE; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21
22 #include "StructuredTextBodyElement.h"
23 #include "StructuredTextParagraph.h"
24 #include "StructuredTextList.h"
25 #include "StructuredTextListItem.h"
26 #include "StructuredTextLiteralBlock.h"
27 #include "StructuredTextHeader.h"
28 #include "STXSaxDriver.h"
29 #include "common.h"
30
31 @implementation StructuredTextBodyElement(SAX)
32
33 @end /* StructuredTextBodyElement(SAX) */
34
35 @implementation StructuredTextParagraph(SAX)
36
37 - (void)produceSaxEventsOnSTXSaxDriver:(STXSaxDriver *)_sax {
38   [_sax produceSaxEventsForParagraph:self];
39 }
40
41 @end /* StructuredTextParagraph(SAX) */
42
43 @implementation StructuredTextList(SAX)
44
45 - (void)produceSaxEventsOnSTXSaxDriver:(STXSaxDriver *)_sax {
46   [_sax produceSaxEventsForList:self];
47 }
48
49 @end /* StructuredTextList(SAX) */
50
51 @implementation StructuredTextListItem(SAX)
52
53 - (void)produceSaxEventsOnSTXSaxDriver:(STXSaxDriver *)_sax {
54   [_sax produceSaxEventsForListItem:self];
55 }
56
57 @end /* StructuredTextListItem(SAX) */
58
59 @implementation StructuredTextLiteralBlock(SAX)
60
61 - (void)produceSaxEventsOnSTXSaxDriver:(STXSaxDriver *)_sax {
62   [_sax produceSaxEventsForLiteralBlock:self];
63 }
64
65 @end /* StructuredTextLiteralBlock(SAX) */
66
67 @implementation StructuredTextHeader(SAX)
68
69 - (void)produceSaxEventsOnSTXSaxDriver:(STXSaxDriver *)_sax {
70   [_sax produceSaxEventsForHeader:self];
71 }
72
73 @end /* StructuredTextHeader(SAX) */