src/Factory.cpp
branchv_0
changeset 14 733334eca89b
parent 9 0a40752e401d
child 20 bef6648e79b1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/Factory.cpp	Sun Jul 22 00:08:13 2018 +0200
@@ -0,0 +1,13 @@
+#include "../include/RelationalWriter.h"
+#include "../include/Factory.h"
+#include "StreamRelationalWriter.h"
+
+namespace relpipe {
+namespace writer {
+
+RelationalWriter* Factory::create(std::ostream& output) {
+	return new StreamRelationalWriter(output);
+}
+
+}
+}
\ No newline at end of file