summaryrefslogtreecommitdiff
path: root/note_compiler/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'note_compiler/parser.h')
-rw-r--r--note_compiler/parser.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/note_compiler/parser.h b/note_compiler/parser.h
new file mode 100644
index 0000000..71e7545
--- /dev/null
+++ b/note_compiler/parser.h
@@ -0,0 +1,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