| 1338 | }; |
| 1339 | |
| 1340 | struct EventFilter |
| 1341 | { |
| 1342 | EventFilter(IEventBrowser::EventFilterCallback c) : callback(c), type(MatchType::Normal) {} |
| 1343 | EventFilter(IEventBrowser::EventFilterCallback c, MatchType t) : callback(c), type(t) {} |
| 1344 | IEventBrowser::EventFilterCallback callback; |
| 1345 | MatchType type; |
| 1346 | }; |
| 1347 | |
| 1348 | static QMap<QString, ActionFlags> ActionFlagsLookup; |
| 1349 | static QStringList ActionFlagsList; |
no outgoing calls
no test coverage detected