include/relpipe/reader/Factory.h
author František Kučera <franta-hg@frantovo.cz>
Sun, 16 Sep 2018 12:01:46 +0200
branchv_0
changeset 27 ac99d74af1f1
parent 17 ec750c536705
child 29 755978b0935c
permissions -rw-r--r--
unify .hgignore across repositories

#pragma once

#include <iostream>

#include "RelationalReader.h"

namespace relpipe {
namespace reader {

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

}
}