src/Configuration.h
branchv_0
changeset 38 2cc2d3f658f4
parent 31 c22577615ce4
child 39 f33464965693
--- 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<RelationConfiguration> relationConfigurations;
+	ColorScheme colorScheme = ColorScheme::GreenScreen;
+	TableStyle tableStyle = TableStyle::Rounded;
 
 	virtual ~Configuration() {
 	}