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