I am studying Drone Programming in C++. I found this function :
void Vehicle::_announceArmedChanged(bool armed)
But when I search for it, all the code calls this function without a parameter, such as:
connect(this, &Vehicle::armedChanged, this, &Vehicle::_announceArmedChanged);
In this case, where does the program get the armed
status?