forked from qt-creator/qt-creator
37 lines
600 B
C
37 lines
600 B
C
![]() |
#ifndef QMLPROFILERENGINE_H
|
||
|
#define QMLPROFILERENGINE_H
|
||
|
|
||
|
#include "ianalyzerengine.h"
|
||
|
|
||
|
namespace Analyzer {
|
||
|
namespace Internal {
|
||
|
|
||
|
|
||
|
class QmlProfilerEngine : public IAnalyzerEngine
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit QmlProfilerEngine(ProjectExplorer::RunConfiguration *runConfiguration);
|
||
|
~QmlProfilerEngine();
|
||
|
|
||
|
void start();
|
||
|
void stop();
|
||
|
|
||
|
signals:
|
||
|
void processRunning();
|
||
|
void processTerminated();
|
||
|
void stopRecording();
|
||
|
|
||
|
public slots:
|
||
|
void viewUpdated();
|
||
|
|
||
|
private:
|
||
|
class QmlProfilerEnginePrivate;
|
||
|
QmlProfilerEnginePrivate *d;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif // QMLPROFILERENGINE_H
|