mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-07-01 10:56:57 +03:00
Profiler support. Currently JProfiler and JVisualVM are implemented.
This commit is contained in:
parent
5cf599673d
commit
efa8e26a3f
16 changed files with 505 additions and 17 deletions
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()
|
||||
{
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue