| 1 | #include "OscOutputModel.h" |
| 2 | |
| 3 | OscOutputModel::OscOutputModel(int id, const QString& name, const QString& address, int port, const QString& description) |
| 4 | : id(id), port(port), name(name), address(address), description(description) |
| 5 | { |
| 6 | } |
| 7 | |
| 8 | int OscOutputModel::getId() const |
| 9 | { |
nothing calls this directly
no outgoing calls
no test coverage detected