add a function to check if a block is initialized

This commit is contained in:
Sven Czarnian
2021-08-19 08:21:08 +02:00
джерело 0fa3559fc4
коміт b453d4d8e2
2 змінених файлів з 11 додано та 0 видалено

@@ -57,6 +57,10 @@ bool AircraftReporter::deinitialize() {
return true;
}
bool AircraftReporter::initialized() const noexcept {
return nullptr != this->m_socket;
}
bool AircraftReporter::send(const aman::AircraftReport& report) {
bool retval = false;