include/relpipe/writer/Factory.h
author František Kučera <franta-hg@frantovo.cz>
Sat, 25 Aug 2018 17:45:53 +0200
branchv_0
changeset 24 00fe696500c5
parent 20 bef6648e79b1
child 29 142bdbba520f
permissions -rw-r--r--
remove unused includes

#pragma once

#include <iostream>

#include "typedefs.h"
#include "TypeId.h"

namespace relpipe {
namespace writer {

class Factory {
public:
	static RelationalWriter* create(std::ostream &output);
};

}
}