14 |
|
class Jargon |
15 |
|
{ |
16 |
|
private: |
17 |
< |
bool include; |
18 |
< |
ext::String word, pronunciation, grammar; |
19 |
< |
xml::NodeSet definition; |
20 |
< |
void display(ios::PrintWriter& pout, xml::TextWriter& xhtml) const; |
17 |
> |
ios::String buffer; |
18 |
|
public: |
19 |
|
Jargon(const ext::String& path, bool include = false); |
20 |
|
// friends: |
21 |
< |
friend ios::PrintWriter& operator<<(ios::PrintWriter& pout, |
22 |
< |
const Jargon& jargon); |
21 |
> |
friend ios::PrintWriter& operator<<(ios::PrintWriter& pout, |
22 |
> |
const Jargon& jargon) { return pout << jargon.buffer; } |
23 |
|
}; |
24 |
|
|
25 |
|
#endif // _Jargon_hpp_ |