| 60 | } |
| 61 | |
| 62 | void send_configure(const char* const key, const char* const value) const |
| 63 | { |
| 64 | char targetPath[std::strlen(path)+11]; |
| 65 | std::strcpy(targetPath, path); |
| 66 | std::strcat(targetPath, "/configure"); |
| 67 | lo_send(addr, targetPath, "ss", key, value); |
| 68 | } |
| 69 | |
| 70 | void send_control(const int32_t index, const float value) const |
| 71 | { |