summaryrefslogtreecommitdiff
path: root/fast/grammar.hh
blob: d17a331a14a02417e03529ab100b36a5187a5368 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once

#include <string>

using namespace std;


namespace G {

struct NT {
        string symbol;
  unsigned int index;
};

class T {
  string word;
};

class Rule {
};

} // namespace