Imported Upstream version 0.18.1.1
[platform/upstream/gettext.git] / gettext-tools / gnulib-lib / html-ostream.h
1 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
2
3 #line 1 "html-ostream.oo.h"
4 /* Output stream that produces HTML output.
5    Copyright (C) 2006 Free Software Foundation, Inc.
6    Written by Bruno Haible <bruno@clisp.org>, 2006.
7
8    This program is free software: you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
20
21 #ifndef _HTML_OSTREAM_H
22 #define _HTML_OSTREAM_H
23
24 #include "ostream.h"
25
26
27 #line 28 "html-ostream.h"
28 struct html_ostream_representation;
29 /* html_ostream_t is defined as a pointer to struct html_ostream_representation.
30    In C++ mode, we use a smart pointer class.
31    In C mode, we have no other choice than a typedef to the root class type.  */
32 #if IS_CPLUSPLUS
33 struct html_ostream_t
34 {
35 private:
36   struct html_ostream_representation *_pointer;
37 public:
38   html_ostream_t () : _pointer (NULL) {}
39   html_ostream_t (struct html_ostream_representation *pointer) : _pointer (pointer) {}
40   struct html_ostream_representation * operator -> () { return _pointer; }
41   operator struct html_ostream_representation * () { return _pointer; }
42   operator struct any_ostream_representation * () { return (struct any_ostream_representation *) _pointer; }
43   operator void * () { return _pointer; }
44   bool operator == (const void *p) { return _pointer == p; }
45   bool operator != (const void *p) { return _pointer != p; }
46   operator ostream_t () { return (ostream_t) (struct any_ostream_representation *) _pointer; }
47   explicit html_ostream_t (ostream_t x) : _pointer ((struct html_ostream_representation *) (void *) x) {}
48 };
49 #else
50 typedef ostream_t html_ostream_t;
51 #endif
52
53 /* Functions that invoke the methods.  */
54 extern        void html_ostream_write_mem (html_ostream_t first_arg, const void *data, size_t len);
55 extern         void html_ostream_flush (html_ostream_t first_arg);
56 extern         void html_ostream_free (html_ostream_t first_arg);
57 extern          void html_ostream_begin_span (html_ostream_t first_arg, const char *classname);
58 extern          void html_ostream_end_span (html_ostream_t first_arg, const char *classname);
59
60 /* Type representing an implementation of html_ostream_t.  */
61 struct html_ostream_implementation
62 {
63   const typeinfo_t * const *superclasses;
64   size_t superclasses_length;
65   size_t instance_size;
66 #define THIS_ARG html_ostream_t first_arg
67 #include "html_ostream.vt.h"
68 #undef THIS_ARG
69 };
70
71 /* Public portion of the object pointed to by a html_ostream_t.  */
72 struct html_ostream_representation_header
73 {
74   const struct html_ostream_implementation *vtable;
75 };
76
77 #if HAVE_INLINE
78
79 /* Define the functions that invoke the methods as inline accesses to
80    the html_ostream_implementation.
81    Use #define to avoid a warning because of extern vs. static.  */
82
83 # define html_ostream_write_mem html_ostream_write_mem_inline
84 static inline void
85 html_ostream_write_mem (html_ostream_t first_arg, const void *data, size_t len)
86 {
87   const struct html_ostream_implementation *vtable =
88     ((struct html_ostream_representation_header *) (struct html_ostream_representation *) first_arg)->vtable;
89   vtable->write_mem (first_arg,data,len);
90 }
91
92 # define html_ostream_flush html_ostream_flush_inline
93 static inline void
94 html_ostream_flush (html_ostream_t first_arg)
95 {
96   const struct html_ostream_implementation *vtable =
97     ((struct html_ostream_representation_header *) (struct html_ostream_representation *) first_arg)->vtable;
98   vtable->flush (first_arg);
99 }
100
101 # define html_ostream_free html_ostream_free_inline
102 static inline void
103 html_ostream_free (html_ostream_t first_arg)
104 {
105   const struct html_ostream_implementation *vtable =
106     ((struct html_ostream_representation_header *) (struct html_ostream_representation *) first_arg)->vtable;
107   vtable->free (first_arg);
108 }
109
110 # define html_ostream_begin_span html_ostream_begin_span_inline
111 static inline void
112 html_ostream_begin_span (html_ostream_t first_arg, const char *classname)
113 {
114   const struct html_ostream_implementation *vtable =
115     ((struct html_ostream_representation_header *) (struct html_ostream_representation *) first_arg)->vtable;
116   vtable->begin_span (first_arg,classname);
117 }
118
119 # define html_ostream_end_span html_ostream_end_span_inline
120 static inline void
121 html_ostream_end_span (html_ostream_t first_arg, const char *classname)
122 {
123   const struct html_ostream_implementation *vtable =
124     ((struct html_ostream_representation_header *) (struct html_ostream_representation *) first_arg)->vtable;
125   vtable->end_span (first_arg,classname);
126 }
127
128 #endif
129
130 extern const typeinfo_t html_ostream_typeinfo;
131 #define html_ostream_SUPERCLASSES &html_ostream_typeinfo, ostream_SUPERCLASSES
132 #define html_ostream_SUPERCLASSES_LENGTH (1 + ostream_SUPERCLASSES_LENGTH)
133
134 extern const struct html_ostream_implementation html_ostream_vtable;
135
136 #line 37 "html-ostream.oo.h"
137
138
139 #ifdef __cplusplus
140 extern "C" {
141 #endif
142
143
144 /* Create an output stream that takes input in the UTF-8 encoding and
145    writes it in HTML form on DESTINATION.
146    This stream produces a sequence of lines.  The caller is responsible
147    for opening the <body><html> elements before and for closing them after
148    the use of this stream.
149    Note that the resulting stream must be closed before DESTINATION can be
150    closed.  */
151 extern html_ostream_t html_ostream_create (ostream_t destination);
152
153
154 #ifdef __cplusplus
155 }
156 #endif
157
158 #endif /* _HTML_OSTREAM_H */