| 45 | HashIntVector hash_to_command; |
| 46 | |
| 47 | struct HashIntCompare { |
| 48 | bool operator()(const HashInt& a, const HashInt& b) { |
| 49 | return a.first < b.first; |
| 50 | } |
| 51 | bool operator()(const HashInt& a, unsigned long b) { |
| 52 | return a.first < b; |
| 53 | } |
| 54 | }; |
| 55 | |
| 56 | Command::Command() : num_key_events(0), state(kUp) { |
| 57 | display_text[0] = '\0'; |
no outgoing calls
no test coverage detected