include/relpipe/writer/Factory.h
branchv_0
changeset 20 bef6648e79b1
parent 14 733334eca89b
child 24 00fe696500c5
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/include/relpipe/writer/Factory.h	Mon Aug 13 20:30:55 2018 +0200
@@ -0,0 +1,19 @@
+#pragma once
+
+#include <string>
+#include <iostream>
+#include <vector>
+
+#include "typedefs.h"
+#include "TypeId.h"
+
+namespace relpipe {
+namespace writer {
+
+class Factory {
+public:
+	static RelationalWriter* create(std::ostream &output);
+};
+
+}
+}