mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-12-23 20:12:34 +00:00
Profiler support. Currently JProfiler and JVisualVM are implemented.
This commit is contained in:
21
logic/profiler/JVisualVM.h
Normal file
21
logic/profiler/JVisualVM.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#pragma once
|
||||
|
||||
#include "BaseProfiler.h"
|
||||
|
||||
class JVisualVM : public BaseProfiler
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
JVisualVM(OneSixInstance *instance, QObject *parent = 0);
|
||||
|
||||
protected:
|
||||
void beginProfilingImpl(MinecraftProcess *process);
|
||||
};
|
||||
|
||||
class JVisualVMFactory : 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