| 302 | |
| 303 | public: |
| 304 | string ssMapIdToServiceCodeDigits(unsigned mapId) |
| 305 | { |
| 306 | if (ssCodes.size() == 0) ssCodesInit(); |
| 307 | map<unsigned,string>::const_iterator foo = ssCodes.find(mapId); |
| 308 | if (foo != ssCodes.end()) { return foo->second; } |
| 309 | return format("unknownMapId(0x%x)",mapId); |
| 310 | } |
| 311 | } supServCodes; // The one and only instance of this class. |
| 312 | |
| 313 | class SSMapCommand |