mirror of
				https://github.com/unmojang/FjordLauncher.git
				synced 2025-11-03 10:40:38 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			201 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			201 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
#include <memory>
 | 
						|
 | 
						|
class IPathMatcher
 | 
						|
{
 | 
						|
public:
 | 
						|
	typedef std::shared_ptr<IPathMatcher> Ptr;
 | 
						|
 | 
						|
public:
 | 
						|
	virtual ~IPathMatcher(){};
 | 
						|
	virtual bool matches(const QString &string) const = 0;
 | 
						|
};
 |