src/Configuration.h
branchv_0
changeset 11 07247893054e
parent 10 ded44e94147c
child 12 e8aae4d42c01
equal deleted inserted replaced
10:ded44e94147c 11:07247893054e
    26 namespace in {
    26 namespace in {
    27 namespace jack {
    27 namespace jack {
    28 
    28 
    29 class Configuration {
    29 class Configuration {
    30 public:
    30 public:
       
    31 	
       
    32 	enum class PortType {
       
    33 		MIDI_INPUT,
       
    34 		MIDI_OUTPUT
       
    35 	};
       
    36 	
    31 	relpipe::common::type::StringX jackClientName = L"relpipe-in-jack";
    37 	relpipe::common::type::StringX jackClientName = L"relpipe-in-jack";
    32 	std::vector<relpipe::common::type::StringX> portsToConnect;
    38 	std::vector<relpipe::common::type::StringX> portsToConnect;
    33 	int requiredJackConnections = 0;
    39 	int requiredJackConnections = 0;
       
    40 	relpipe::common::type::Boolean listJackPorts = false;
       
    41 	relpipe::common::type::Boolean listMidiMessages = true;
    34 
    42 
    35 	virtual ~Configuration() {
    43 	virtual ~Configuration() {
    36 	}
    44 	}
    37 };
    45 };
    38 
    46