diff options
Diffstat (limited to 'src/plugins/perfprofiler/perfdatareader.h')
-rw-r--r-- | src/plugins/perfprofiler/perfdatareader.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/plugins/perfprofiler/perfdatareader.h b/src/plugins/perfprofiler/perfdatareader.h index 8f30fa28d7..a6fbc5fe6b 100644 --- a/src/plugins/perfprofiler/perfdatareader.h +++ b/src/plugins/perfprofiler/perfdatareader.h @@ -28,13 +28,16 @@ #include "perfprofilertracefile.h" #include "perftimelinemodelmanager.h" -#include <projectexplorer/target.h> - #include <utils/temporaryfile.h> #include <QProcess> #include <QQueue> +namespace ProjectExplorer { +class Kit; +class RunControl; +} // ProjectExplorer + namespace PerfProfiler { namespace Internal { @@ -51,7 +54,7 @@ public: void startParser(); void stopParser(); - QStringList findTargetArguments(const ProjectExplorer::RunConfiguration *rc) const; + QStringList findTargetArguments(const ProjectExplorer::RunControl *runControl) const; void clear(); bool feedParser(const QByteArray &input); |