PrismLauncher/launcher/tools/JVisualVM.h
Octol1ttle e89ce1124a
refactor!!!: migrate from shared pointers
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
(cherry picked from commit 549405ab2f)
2026-02-17 20:23:05 +02:00

12 lines
419 B
C++

#pragma once
#include "BaseProfiler.h"
class JVisualVMFactory : public BaseProfilerFactory {
public:
QString name() const override { return "VisualVM"; }
void registerSettings(SettingsObject* settings) override;
BaseExternalTool* createTool(BaseInstance* instance, QObject* parent = 0) override;
bool check(QString* error) override;
bool check(const QString& path, QString* error) override;
};