# | Line 14 | Line 14 | |
---|---|---|
14 | class Jargon | |
15 | { | |
16 | private: | |
17 | < | ios::String buffer; |
17 | > | bool include; |
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, | |
23 | < | const Jargon& jargon) { return pout << jargon.buffer; } |
23 | > | const Jargon& jargon); |
24 | }; | |
25 | ||
26 | #endif // _Jargon_hpp_ |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |