| 19 | } |
| 20 | |
| 21 | QSize GroupController::getFrameSize(const QString &serial) |
| 22 | { |
| 23 | auto data = qsc::IDeviceManage::getInstance().getDevice(serial)->getUserData(); |
| 24 | if (!data) { |
| 25 | return QSize(); |
| 26 | } |
| 27 | |
| 28 | return static_cast<VideoForm*>(data)->frameSize(); |
| 29 | } |
| 30 | |
| 31 | GroupController &GroupController::instance() |
| 32 | { |
nothing calls this directly
no outgoing calls
no test coverage detected