| 44 | { |
| 45 | |
| 46 | bool isSupportedMimeType(const QMimeType& mimeType) |
| 47 | { |
| 48 | const QString mime = mimeType.name(); |
| 49 | return (mime == QLatin1String("text/x-c++src") || mime == QLatin1String("text/x-csrc")); |
| 50 | } |
| 51 | |
| 52 | CompileAnalyzer::CompileAnalyzer(IPlugin* plugin, |
| 53 | const QString& toolName, const QString& toolIconName, |
no test coverage detected