src/Configuration.h
branchv_0
changeset 11 07247893054e
parent 10 ded44e94147c
child 12 e8aae4d42c01
--- a/src/Configuration.h	Tue Oct 06 16:55:22 2020 +0200
+++ b/src/Configuration.h	Wed Oct 07 01:45:30 2020 +0200
@@ -28,9 +28,17 @@
 
 class Configuration {
 public:
+	
+	enum class PortType {
+		MIDI_INPUT,
+		MIDI_OUTPUT
+	};
+	
 	relpipe::common::type::StringX jackClientName = L"relpipe-in-jack";
 	std::vector<relpipe::common::type::StringX> portsToConnect;
 	int requiredJackConnections = 0;
+	relpipe::common::type::Boolean listJackPorts = false;
+	relpipe::common::type::Boolean listMidiMessages = true;
 
 	virtual ~Configuration() {
 	}