include/relpipe/writer/Factory.h
author František Kučera <franta-hg@frantovo.cz>
Mon, 13 Aug 2018 20:30:55 +0200
branchv_0
changeset 20 bef6648e79b1
parent 14 include/Factory.h@733334eca89b
child 24 00fe696500c5
permissions -rw-r--r--
relpipe-lib-writer: move public header files to: include/relpipe/writer/

#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);
};

}
}