diff -r 5dcff3c35462 -r 2cc2d3f658f4 src/Configuration.h --- a/src/Configuration.h Mon Jun 20 00:15:08 2022 +0200 +++ b/src/Configuration.h Mon Jun 20 00:55:56 2022 +0200 @@ -40,10 +40,28 @@ class Configuration { public: + + enum class ColorScheme { + GreenScreen, + Monochrome, + Midnight + }; + + enum class TableStyle { + Rounded, + Sharp, + SharpDouble, + HorizontalOnly, + Ascii + }; + + relpipe::reader::boolean_t writeTypes = true; relpipe::reader::boolean_t writeRecordCount = true; relpipe::reader::boolean_t writeRelationName = true; std::vector relationConfigurations; + ColorScheme colorScheme = ColorScheme::GreenScreen; + TableStyle tableStyle = TableStyle::Rounded; virtual ~Configuration() { }