src/CSVCommand.h
branchv_0
changeset 16 15ee963675af
parent 15 157bb1d5e08a
--- a/src/CSVCommand.h	Wed Sep 23 11:26:33 2020 +0200
+++ b/src/CSVCommand.h	Wed Sep 23 16:58:48 2020 +0200
@@ -23,6 +23,8 @@
 
 #include <relpipe/writer/TypeId.h>
 
+#include "Configuration.h"
+
 namespace relpipe {
 namespace in {
 namespace csv {
@@ -31,7 +33,7 @@
 private:
 	bool readValue(std::istream& input, std::stringstream& currentValue, bool& lastInRecord);
 public:
-	void process(std::istream& input, const vector<relpipe::writer::string_t>& args, std::shared_ptr<writer::RelationalWriter> writer);
+	void process(std::istream& input, std::shared_ptr<writer::RelationalWriter> writer, Configuration& configuration);
 
 };