Simple class for describing indentation
| 65 | |
| 66 | /// Simple class for describing indentation |
| 67 | class ind { |
| 68 | public: |
| 69 | /// Which indentation level |
| 70 | int l; |
| 71 | /// Indent by level \a i |
| 72 | ind(int i) : l(i) {} |
| 73 | }; |
| 74 | |
| 75 | /// How to match |
| 76 | enum MatchType { |