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; |
18 |
> |
std::vector<std::string> args; |
19 |
|
public: |
20 |
< |
Jargon(const ext::String& path, bool include = false); |
20 |
> |
Jargon(const ext::String& path, bool include, const ext::String& relative); |
21 |
|
// friends: |
22 |
< |
friend ios::PrintWriter& operator<<(ios::PrintWriter& pout, |
22 |
> |
friend ios::PrintWriter& operator<<(ios::PrintWriter& pout, |
23 |
|
const Jargon& jargon); |
24 |
|
}; |
25 |
|
|