summaryrefslogtreecommitdiff
path: root/fast/grammar.hh
blob: 5625b85b73077b8778752750557854c59551c03c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef GRAMMAR_HH
#define GRAMMAR_HH

#include <string>
#include <sstream>

using namespace std;

namespace Grammar {


class NT {
  public:
    string       symbol;
    unsigned int index;

    string s();
};

class T {
  public:
    string word;
};

class Rule {
  public:
};


} // namespace

#endif