mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-12-14 12:37:23 +00:00
Profiler support. Currently JProfiler and JVisualVM are implemented.
This commit is contained in:
21
logic/profiler/JProfiler.h
Normal file
21
logic/profiler/JProfiler.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#pragma once
|
||||
|
||||
#include "BaseProfiler.h"
|
||||
|
||||
class JProfiler : public BaseProfiler
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
JProfiler(OneSixInstance *instance, QObject *parent = 0);
|
||||
|
||||
protected:
|
||||
void beginProfilingImpl(MinecraftProcess *process);
|
||||
};
|
||||
|
||||
class JProfilerFactory : public BaseProfilerFactory
|
||||
{
|
||||
public:
|
||||
void registerSettings(SettingsObject *settings) override;
|
||||
BaseProfiler *createProfiler(OneSixInstance *instance, QObject *parent = 0) override;
|
||||
bool check(const QString &path, QString *error) override;
|
||||
};
|
||||
Reference in New Issue
Block a user