aboutsummaryrefslogtreecommitdiff
path: root/buildtools/codegen/CodegenOutput.hpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2022-05-28 20:52:42 -0700
committerrtk0c <[email protected]>2022-05-28 20:52:42 -0700
commit1a6f1ea3b76c3ed4cad5aba5502af390ce50a2c0 (patch)
tree40627f5cdfd931b8c28f0b3a5ec78ef0d0f2b9f0 /buildtools/codegen/CodegenOutput.hpp
parent6c3007295a6a8c6803933392834c974ec5f56aa0 (diff)
Changeset: 42 Change codegen input parsing to lookahead based; lookup table infra; input/output decl infra
Diffstat (limited to 'buildtools/codegen/CodegenOutput.hpp')
-rw-r--r--buildtools/codegen/CodegenOutput.hpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/buildtools/codegen/CodegenOutput.hpp b/buildtools/codegen/CodegenOutput.hpp
deleted file mode 100644
index 660feb1..0000000
--- a/buildtools/codegen/CodegenOutput.hpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#pragma once
-
-#include <string>
-#include <vector>
-
-// A generic "thing" (could be anything, comments, string-concated functionsm, etc.) to spit into the output file
-struct CodegenOutputThing {
- std::string text;
-};
-
-class CodegenOutput {
-private:
- std::vector<CodegenOutputThing> mOutThings;
-
-public:
- void AddOutputThing(CodegenOutputThing thing);
-};