1 |
// Feeping Creaturism |
2 |
// |
3 |
// Douglas Thrift |
4 |
// |
5 |
// $Id$ |
6 |
|
7 |
#ifndef _Jargon_hpp_ |
8 |
#define _Jargon_hpp_ |
9 |
|
10 |
#include <cxx/platform.hpp> |
11 |
|
12 |
#ifdef MENES_PRAGMA_ONCE |
13 |
#pragma once |
14 |
#endif |
15 |
|
16 |
#include "FeepingCreaturism.hpp" |
17 |
|
18 |
class Jargon |
19 |
{ |
20 |
private: |
21 |
bool include; |
22 |
ext::Vector<cse::String> args; |
23 |
public: |
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 &output, const Jargon &jargon); |
27 |
}; |
28 |
|
29 |
#endif // _Jargon_hpp_ |