7 |
|
#ifndef _Jargon_hpp_ |
8 |
|
#define _Jargon_hpp_ |
9 |
|
|
10 |
< |
#include "FeepingCreaturism.hpp" |
10 |
> |
#include <cxx/platform.hpp> |
11 |
> |
|
12 |
> |
#ifdef MENES_PRAGMA_ONCE |
13 |
> |
#pragma once |
14 |
> |
#endif |
15 |
|
|
16 |
< |
#include <pstream.h> |
16 |
> |
#include "FeepingCreaturism.hpp" |
17 |
|
|
18 |
|
class Jargon |
19 |
|
{ |
20 |
|
private: |
21 |
|
bool include; |
22 |
< |
std::vector<std::string> args; |
22 |
> |
ext::Vector<cse::String> args; |
23 |
|
public: |
24 |
< |
Jargon(const ext::String& path, bool include, const ext::String& relative); |
24 |
> |
Jargon(const cse::String &path, const cse::String &jargon, bool include, const cse::String &relative); |
25 |
|
// friends: |
26 |
< |
friend ios::PrintWriter& operator<<(ios::PrintWriter& pout, |
23 |
< |
const Jargon& jargon); |
26 |
> |
friend ios::PrintWriter &operator<<(ios::PrintWriter &output, const Jargon &jargon); |
27 |
|
}; |
28 |
|
|
29 |
|
#endif // _Jargon_hpp_ |