include/Factory.h
branchv_0
changeset 14 733334eca89b
parent 13 e7234dd45166
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/include/Factory.h	Sun Jul 22 00:08:13 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);
+};
+
+}
+}