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:
19
logic/profiler/BaseProfiler.cpp
Normal file
19
logic/profiler/BaseProfiler.cpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#include "BaseProfiler.h"
|
||||
|
||||
BaseProfiler::BaseProfiler(OneSixInstance *instance, QObject *parent)
|
||||
: QObject(parent), m_instance(instance)
|
||||
{
|
||||
}
|
||||
|
||||
BaseProfiler::~BaseProfiler()
|
||||
{
|
||||
}
|
||||
|
||||
void BaseProfiler::beginProfiling(MinecraftProcess *process)
|
||||
{
|
||||
beginProfilingImpl(process);
|
||||
}
|
||||
|
||||
BaseProfilerFactory::~BaseProfilerFactory()
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user