mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 12:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			236 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			236 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef OPENMW_COMPONENTS_RESOURCE_ERRORMARKER_H
 | 
						|
#define OPENMW_COMPONENTS_RESOURCE_ERRORMARKER_H
 | 
						|
 | 
						|
#include <string_view>
 | 
						|
 | 
						|
namespace Resource
 | 
						|
{
 | 
						|
    struct ErrorMarker
 | 
						|
    {
 | 
						|
        static const std::string_view sValue;
 | 
						|
    };
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |