| 1 | #include "DeviceModel.h" |
| 2 | |
| 3 | DeviceModel::DeviceModel(int id, const QString& name, const QString& address, int port, const QString& username, |
| 4 | const QString& password, const QString& description, const QString& version, const QString& shadow, |
| 5 | int channels, const QString& channelFormats, int previewChannel, int lockedChannel) |
| 6 | : id(id), port(port), name(name), address(address), username(username), password(password), description(description), |
| 7 | version(version), shadow(shadow), channels(channels), channelFormats(channelFormats), previewChannel(previewChannel), lockedChannel(lockedChannel) |
| 8 | { |
| 9 | } |
| 10 | |
| 11 | int DeviceModel::getId() const |
| 12 | { |
nothing calls this directly
no outgoing calls
no test coverage detected