diff options
author | JSDurand <mmemmew@gmail.com> | 2021-11-08 16:37:57 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2021-11-08 16:37:57 +0800 |
commit | 9594210f02572681ed581c5197ace4c207db0917 (patch) | |
tree | 08bf1bf079d111c64cf3128dd68323abdce78228 /src/input.h |
initial commit
Now the rough framework is established and the grammar class is sort
of ready.
It remains to write a general input reading mechanism.
Diffstat (limited to 'src/input.h')
-rw-r--r-- | src/input.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/input.h b/src/input.h new file mode 100644 index 0000000..16a4ca6 --- /dev/null +++ b/src/input.h @@ -0,0 +1,8 @@ +#ifndef INPUT_H +#define INPUT_H + +#include "grammar.h" + + + +#endif |