include/Factory.h
author František Kučera <franta-hg@frantovo.cz>
Sun, 22 Jul 2018 00:08:13 +0200
branchv_0
changeset 14 733334eca89b
parent 13 include/RelationalWriter.h@e7234dd45166
permissions -rw-r--r--
move create() method to a factory

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

}
}