~bzoltan/kubuntu-packaging/decouple_cmake_plugin

« back to all changes in this revision

Viewing changes to src/plugins/qnx/qnxanalyzesupport.h

  • Committer: Timo Jyrinki
  • Date: 2013-11-15 12:25:23 UTC
  • mfrom: (1.1.28)
  • Revision ID: timo.jyrinki@canonical.com-20131115122523-i2kyamsu4gs2mu1m
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
#include <utils/outputformat.h>
37
37
#include <qmldebug/qmloutputparser.h>
38
38
 
39
 
namespace Analyzer { class IAnalyzerEngine; }
 
39
namespace Analyzer { class AnalyzerRunControl; }
40
40
 
41
41
namespace Qnx {
42
42
namespace Internal {
47
47
{
48
48
    Q_OBJECT
49
49
public:
50
 
    QnxAnalyzeSupport(QnxRunConfiguration *runConfig, Analyzer::IAnalyzerEngine *engine);
 
50
    QnxAnalyzeSupport(QnxRunConfiguration *runConfig, Analyzer::AnalyzerRunControl *engine);
51
51
 
52
52
public slots:
53
53
    void handleProfilingFinished();
66
66
    void startExecution();
67
67
    void showMessage(const QString &, Utils::OutputFormat);
68
68
 
69
 
    Analyzer::IAnalyzerEngine *m_engine;
 
69
    Analyzer::AnalyzerRunControl *m_runControl;
70
70
    QmlDebug::QmlOutputParser m_outputParser;
71
71
    int m_qmlPort;
72
72
};