include/relpipe/reader/Factory.h
author František Kučera <franta-hg@frantovo.cz>
Sat, 25 Aug 2018 18:16:53 +0200
branchv_0
changeset 14 e8de089f95dd
child 17 ec750c536705
permissions -rw-r--r--
refactoring, move files, use TypeId instead of integer_t

#pragma once

#include <iostream>

namespace relpipe {
namespace reader {

class Factory {
public:
	static RelationalReader* create(std::istream &input);
};

}
}