aboutsummaryrefslogtreecommitdiff
path: root/parse.h
diff options
context:
space:
mode:
authorSemperVinco <w.deweijer@hotmail.com>2017-03-03 13:05:40 +0100
committerSemperVinco <w.deweijer@hotmail.com>2017-03-03 13:05:40 +0100
commit9f38c82b01c44410bb7778d2607f38daec9dfb35 (patch)
treeb005dd24d6264983672a8c7b07af27b508d04494 /parse.h
parent1a6842e9a3a0c4da7357f9efa002e5041f27f2eb (diff)
Split parsing code into its own file and cleanup includes
Diffstat (limited to 'parse.h')
-rw-r--r--parse.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/parse.h b/parse.h
new file mode 100644
index 0000000..7af8b2a
--- /dev/null
+++ b/parse.h
@@ -0,0 +1,11 @@
+#pragma once
+
+#include <string>
+
+#include "world.h"
+
+using namespace std;
+
+
+Team assemble(const string &source);
+string preprocess(istream &file); \ No newline at end of file