Qore Qdx Module Reference 1.1.1
Loading...
Searching...
No Matches
Qdx.qm.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
4/* Qdx.qm Copyright 2016 - 2023 Qore Technologies, s.r.o.
5
6 Permission is hereby granted, free of charge, to any person obtaining a
7 copy of this software and associated documentation files (the "Software"),
8 to deal in the Software without restriction, including without limitation
9 the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 and/or sell copies of the Software, and to permit persons to whom the
11 Software is furnished to do so, subject to the following conditions:
12
13 The above copyright notice and this permission notice shall be included in
14 all copies or substantial portions of the Software.
15
16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 DEALINGS IN THE SOFTWARE.
23*/
24
25
26
27
28
62namespace Qdx {
65
66public:
67private:
68 bool css = False;
69 bool inTable = False;
70
71public:
72
73 // no public members
74
75
77
81 string process(string line);
82
83 };
84
87
88public:
89protected:
91 bool do_trim;
92
93public:
94
113 constructor(Qore::InputStream is, *string encoding, *string eol, bool do_trim = True) ;
114
115
117
133 string getLine();
134
135
137
153 string getValue();
154
155 };
156
159
160public:
161private:
162 bool checkFile;
163 bool isQore = True;
164
165public:
166
182 constructor(Qore::InputStream is, *string encoding, *string eol, bool do_trim = False) ;
183
184
198 constructor(Qore::StreamReader sr, *string eol, bool do_trim = False) ;
199
200
202
215 string getLine();
216
217
219
232 string getValue();
233
234 };
235
238
239public:
254 constructor(Qore::InputStream is, *string encoding, *string eol, bool do_trim = False) ;
255
256
270 constructor(Qore::StreamReader sr, *string eol, bool do_trim = False) ;
271
272
274
287 string getLine();
288
289
291
304 string getValue();
305
306 };
307};
converts specially-formatted text in the input to HTML tables
Definition: Qdx.qm.dox.h:64
string process(string line)
accepts an input line and returns the formatted output line
a line-based input stream iterator that converts specially-formatted input line text to HTML table ou...
Definition: Qdx.qm.dox.h:86
constructor(Qore::InputStream is, *string encoding, *string eol, bool do_trim=True)
bool do_trim
Trim the input text.
Definition: Qdx.qm.dox.h:91
string getValue()
Returns the current line in the data or throws an ITERATOR-ERROR exception if the iterator is invalid...
string getLine()
Returns the current line in the data or throws an ITERATOR-ERROR exception if the iterator is invalid...
a line-based input stream iterator for post-processing HTML and JS files created for Qore documentati...
Definition: Qdx.qm.dox.h:158
constructor(Qore::InputStream is, *string encoding, *string eol, bool do_trim=False)
string getValue()
Returns the processed version of the current line in the input data or throws an ITERATOR-ERROR excep...
constructor(Qore::StreamReader sr, *string eol, bool do_trim=False)
string getLine()
Returns the processed version of the current line in the input data or throws an ITERATOR-ERROR excep...
a line-based input stream iterator for post-processing HTML and JS files created for Qore documentati...
Definition: Qdx.qm.dox.h:237
string getValue()
Returns the processed version of the current line in the input data or throws an ITERATOR-ERROR excep...
string getLine()
Returns the processed version of the current line in the input data or throws an ITERATOR-ERROR excep...
constructor(Qore::InputStream is, *string encoding, *string eol, bool do_trim=False)
constructor(Qore::StreamReader sr, *string eol, bool do_trim=False)
the Qdx namespace contains all the objects in the Qdx module
Definition: Qdx.qm.dox.h:62