change the interface

Esse commit está contido em:
Sven Czarnian
2021-10-10 20:52:37 +02:00
commit 70a41bfc0e
2 arquivos alterados com 2 adições e 2 exclusões

Ver arquivo

@@ -64,7 +64,7 @@ namespace aman {
* @param[in] report The new aircraft report
* @return True if the report is sent, else false
*/
bool send(const aman::AircraftReport& report);
bool send(aman::AircraftReport& report);
/**
* @brief Returns the reporter instance
* @return The system-wide instance

Ver arquivo

@@ -61,7 +61,7 @@ bool AircraftReporter::initialized() const noexcept {
return nullptr != this->m_socket;
}
bool AircraftReporter::send(const aman::AircraftReport& report) {
bool AircraftReporter::send(aman::AircraftReport& report) {
bool retval = false;
if (nullptr != this->m_socket) {