src/RelationalWriter.cpp
author František Kučera <franta-hg@frantovo.cz>
Sat, 21 Jul 2018 23:01:47 +0200
branchv_0
changeset 12 640e88aedf8f
parent 9 0a40752e401d
permissions -rw-r--r--
code for table generation ported from the prototype: RelationalGenerator.h

#include "../include/RelationalWriter.h"
#include "StreamRelationalWriter.h"

namespace relpipe {
namespace writer {

RelationalWriter* RelationalWriter::create(std::ostream& output) {
	return new StreamRelationalWriter(output);
}

}
}