9 |
|
|
10 |
|
#include "FeepingCreaturism.hpp" |
11 |
|
|
12 |
– |
#include <pstream.h> |
13 |
– |
|
12 |
|
class Jargon |
13 |
|
{ |
14 |
|
private: |
15 |
|
bool include; |
16 |
< |
ext::String word, pronunciation, grammar; |
19 |
< |
xml::NodeSet definition; |
16 |
> |
ext::Vector<ext::String> args; |
17 |
|
public: |
18 |
< |
Jargon(const ext::String& path, bool include = false); |
18 |
> |
Jargon(const ext::String& path, const ext::String& jargon, bool include, |
19 |
> |
const ext::String& relative); |
20 |
|
// friends: |
21 |
< |
friend ios::PrintWriter& operator<<(ios::PrintWriter& pout, |
21 |
> |
friend ios::PrintWriter& operator<<(ios::PrintWriter& pout, |
22 |
|
const Jargon& jargon); |
23 |
|
}; |
24 |
|
|