aboutsummaryrefslogtreecommitdiff
path: root/buildtools/codegen/CodegenOutput.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'buildtools/codegen/CodegenOutput.cpp')
-rw-r--r--buildtools/codegen/CodegenOutput.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/buildtools/codegen/CodegenOutput.cpp b/buildtools/codegen/CodegenOutput.cpp
new file mode 100644
index 0000000..214ded6
--- /dev/null
+++ b/buildtools/codegen/CodegenOutput.cpp
@@ -0,0 +1,7 @@
+#include "CodegenOutput.hpp"
+
+#include <utility>
+
+void CodegenOutput::AddOutputThing(CodegenOutputThing thing) {
+ mOutThings.push_back(std::move(thing));
+}