#include <iostream>
#include <relpipe/cli/CLI.h>
#include <relpipe/cli/RelpipeCLIException.h>
#include <relpipe/reader/Factory.h>
#include <relpipe/reader/RelationalReader.h>
#include <relpipe/reader/RelpipeReaderException.h>
using namespace relpipe::cli;
using namespace relpipe::reader;
int main(int argc, char**argv) {
CLI cli(argc, argv);
std::cout << "TODO: relpipe-out-chart..." << std::endl;
std::shared_ptr<RelationalReader> reader(Factory::create(std::cin));
int resultCode = CLI::EXIT_CODE_UNEXPECTED_ERROR;
return resultCode;
}