| 64 | } |
| 65 | |
| 66 | void MidiClockOut::InitDevice() |
| 67 | { |
| 68 | BuildDeviceList(); |
| 69 | |
| 70 | const std::vector<std::string>& devices = mDevice.GetPortList(false); |
| 71 | for (int i = 0; i < devices.size(); ++i) |
| 72 | { |
| 73 | if (strcmp(devices[i].c_str(), mDevice.Name()) == 0) |
| 74 | mDeviceIndex = i; |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | void MidiClockOut::DrawModule() |
| 79 | { |
nothing calls this directly
no test coverage detected