mirror of
				https://github.com/unmojang/FjordLauncher.git
				synced 2025-11-04 03:07:15 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			458 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			458 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include "BaseProfiler.h"
 | 
						|
 | 
						|
#include "multimc_logic_export.h"
 | 
						|
 | 
						|
class MULTIMC_LOGIC_EXPORT JProfilerFactory : public BaseProfilerFactory
 | 
						|
{
 | 
						|
public:
 | 
						|
	QString name() const override { return "JProfiler"; }
 | 
						|
	void registerSettings(SettingsObjectPtr settings) override;
 | 
						|
	BaseExternalTool *createTool(InstancePtr instance, QObject *parent = 0) override;
 | 
						|
	bool check(QString *error) override;
 | 
						|
	bool check(const QString &path, QString *error) override;
 | 
						|
};
 |