mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 11:52:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			719 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			719 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2023, Andrew Kaster <akaster@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/RefPtr.h>
 | |
| #include <AK/StringView.h>
 | |
| #include <LibCore/Resource.h>
 | |
| #include <LibCore/ResourceImplementation.h>
 | |
| 
 | |
| namespace Core {
 | |
| 
 | |
| class ResourceImplementationFile : public ResourceImplementation {
 | |
| public:
 | |
|     explicit ResourceImplementationFile(String base_directory);
 | |
| 
 | |
|     virtual ErrorOr<NonnullRefPtr<Resource>> load_from_resource_scheme_uri(StringView) override;
 | |
|     virtual Vector<String> child_names_for_resource_scheme(Resource const&) override;
 | |
|     virtual String filesystem_path_for_resource_scheme(String const&) override;
 | |
| 
 | |
| private:
 | |
|     String m_base_directory;
 | |
| };
 | |
| 
 | |
| }
 | 
