Files
qt-creator/src/plugins/qmlprofiler/qmlprofilerengine.h

37 lines
600 B
C
Raw Normal View History

2011-03-11 12:22:57 +01:00
#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