include/Factory.h
author František Kučera <franta-hg@frantovo.cz>
Sat, 28 Jul 2018 15:42:33 +0200
branchv_0
changeset 19 98b901d7bb95
parent 14 733334eca89b
permissions -rw-r--r--
ASan: add AddressSanitizer g++ option: -fsanitize=address

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

}
}