summaryrefslogtreecommitdiffstats
path: root/logic/profiler/JProfiler.h
blob: 8a5bc5616788a7920be6335cf82afbecad5927c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once

#include "BaseProfiler.h"

class JProfiler : public BaseProfiler
{
	Q_OBJECT
public:
	JProfiler(BaseInstance *instance, QObject *parent = 0);

protected:
	void beginProfilingImpl(MinecraftProcess *process);
};

class JProfilerFactory : public BaseProfilerFactory
{
public:
	QString name() const override { return "JProfiler"; }
	void registerSettings(SettingsObject *settings) override;
	BaseProfiler *createProfiler(BaseInstance *instance, QObject *parent = 0) override;
	bool check(QString *error) override;
	bool check(const QString &path, QString *error) override;
};