summaryrefslogtreecommitdiff
path: root/note_compiler/parser.h
blob: 71e7545ff4897119e93d335b53b97715ff403922 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __PARSER_H__
#define __PARSET_H__


#include <set>
#include <map>
#include <list>
#include <string>

#include "programs.h"

using namespace std;

program_t parse(string fn);

#endif