include/Factory.h
author František Kučera <franta-hg@frantovo.cz>
Sun, 22 Jul 2018 22:21:49 +0200
branchv_0
changeset 17 f2cccaa9dd38
parent 14 733334eca89b
permissions -rw-r--r--
replace writeRecord() with sequence of writeAttribute()

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

}
}