Add special ALL id (0xFFFFFF).

This commit is contained in:
Jonathan Naylor 2016-05-10 08:18:10 +01:00
parent 7a3d77d5f5
commit 6dd10a5463

View file

@ -72,6 +72,9 @@ std::string CDMRLookup::find(unsigned int id) const
{
std::string callsign;
if (id == 0xFFFFFFU)
return std::string("ALL");
try {
callsign = m_table.at(id);
} catch (...) {