src/Configuration.h
branchv_0
changeset 12 e8aae4d42c01
parent 11 07247893054e
child 13 326935d1bfab
equal deleted inserted replaced
11:07247893054e 12:e8aae4d42c01
    32 	enum class PortType {
    32 	enum class PortType {
    33 		MIDI_INPUT,
    33 		MIDI_INPUT,
    34 		MIDI_OUTPUT
    34 		MIDI_OUTPUT
    35 	};
    35 	};
    36 	
    36 	
    37 	relpipe::common::type::StringX jackClientName = L"relpipe-in-jack";
    37 	relpipe::common::type::StringX client = L"relpipe-in-jack";
    38 	std::vector<relpipe::common::type::StringX> portsToConnect;
    38 	relpipe::common::type::StringX port = L"midi-in";
    39 	int requiredJackConnections = 0;
    39 	std::vector<relpipe::common::type::StringX> connectTo;
    40 	relpipe::common::type::Boolean listJackPorts = false;
    40 	int requiredConnections = 0;
       
    41 	relpipe::common::type::Boolean listPorts = false;
    41 	relpipe::common::type::Boolean listMidiMessages = true;
    42 	relpipe::common::type::Boolean listMidiMessages = true;
    42 
    43 
    43 	virtual ~Configuration() {
    44 	virtual ~Configuration() {
    44 	}
    45 	}
    45 };
    46 };