| 7 | #include <algorithm> |
| 8 | |
| 9 | SDRDeviceInfo::SDRDeviceInfo() : available(false), remote(false), manual(false), soapyDevice(nullptr) { |
| 10 | active.store(false); |
| 11 | } |
| 12 | |
| 13 | SDRDeviceInfo::~SDRDeviceInfo() { |
| 14 | if (soapyDevice != nullptr) { |
nothing calls this directly
no outgoing calls
no test coverage detected