include/relpipe/reader/Factory.h
author František Kučera <franta-hg@frantovo.cz>
Mon, 27 Aug 2018 00:06:14 +0200
branchv_0
changeset 17 ec750c536705
parent 14 e8de089f95dd
child 29 755978b0935c
permissions -rw-r--r--
interface + dummy implementation

#pragma once

#include <iostream>

#include "RelationalReader.h"

namespace relpipe {
namespace reader {

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

}
}