| 318 | } |
| 319 | |
| 320 | bool ProcessMemoryWindowsPlugin::canHandle(const QString& target) const |
| 321 | { |
| 322 | // Target format: "pid:name" or just "pid" |
| 323 | QRegularExpression re("^\\d+"); |
| 324 | return re.match(target).hasMatch(); |
| 325 | } |
| 326 | |
| 327 | std::unique_ptr<rcx::Provider> ProcessMemoryWindowsPlugin::createProvider(const QString& target, QString* errorMsg) |
| 328 | { |
nothing calls this directly
no outgoing calls
no test coverage detected