src/Configuration.h
branchv_0
changeset 23 d2ad84dcf249
parent 15 b3239e4ad328
equal deleted inserted replaced
22:eebc16b7c3e4 23:d2ad84dcf249
    26 namespace out {
    26 namespace out {
    27 namespace jack {
    27 namespace jack {
    28 
    28 
    29 class Configuration {
    29 class Configuration {
    30 public:
    30 public:
    31 	relpipe::common::type::StringX jackClientName = L"relpipe-out-jack";
    31 	relpipe::common::type::StringX client = L"relpipe-out-jack";
    32 	std::vector<relpipe::common::type::StringX> portsToConnect;
    32 	relpipe::common::type::StringX port = L"midi-out";
    33 	int requiredJackConnections = 1;
    33 	std::vector<relpipe::common::type::StringX> connectTo;
       
    34 	int requiredConnections = 1;
    34 
    35 
    35 	virtual ~Configuration() {
    36 	virtual ~Configuration() {
    36 	}
    37 	}
    37 };
    38 };
    38 
    39