mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-04-17 07:47:00 -04:00
35 lines
829 B
C++
35 lines
829 B
C++
#pragma once
|
|
|
|
#include "BaseExternalTool.h"
|
|
#include "QObjectPtr.h"
|
|
|
|
class BaseInstance;
|
|
class SettingsObject;
|
|
class LaunchTask;
|
|
class QProcess;
|
|
|
|
class BaseProfiler : public BaseExternalTool {
|
|
Q_OBJECT
|
|
public:
|
|
explicit BaseProfiler(SettingsObject* settings, BaseInstance* instance, QObject* parent = 0);
|
|
|
|
public slots:
|
|
void beginProfiling(LaunchTask* process);
|
|
void abortProfiling();
|
|
|
|
protected:
|
|
QProcess* m_profilerProcess;
|
|
|
|
virtual void beginProfilingImpl(LaunchTask* process) = 0;
|
|
virtual void abortProfilingImpl();
|
|
|
|
signals:
|
|
void readyToLaunch(const QString& message);
|
|
void abortLaunch(const QString& message);
|
|
};
|
|
|
|
class BaseProfilerFactory : public BaseExternalToolFactory {
|
|
public:
|
|
virtual BaseProfiler* createProfiler(BaseInstance* instance, QObject* parent = 0);
|
|
};
|