src/Configuration.h
branchv_0
changeset 1 291bdd97fcff
parent 0 e8205d9206fb
child 2 1eef3d465863
--- a/src/Configuration.h	Sat Feb 26 01:21:14 2022 +0100
+++ b/src/Configuration.h	Tue Mar 01 00:47:49 2022 +0100
@@ -26,29 +26,12 @@
 namespace in {
 namespace posixmq {
 
-class AttributeRecipe {
-public:
-
-	virtual ~AttributeRecipe() {
-	}
-
-	relpipe::writer::string_t name;
-	relpipe::writer::TypeId type;
-
-};
-
 class Configuration {
 public:
 
-	enum class ReadTypes {
-		AUTO,
-		TRUE,
-		FALSE,
-	};
-
-	ReadTypes readTypes = ReadTypes::AUTO;
+	relpipe::writer::integer_t messageCount = 1;
 	relpipe::writer::string_t relation = L"posixmq";
-	std::vector<AttributeRecipe> attributes;
+	relpipe::writer::string_t queue = L"relpipe";
 
 	virtual ~Configuration() {
 	}