mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 11:56:39 +00:00 
			
		
		
		
	Use the same function to load and save to have single place with field order definition. Use concepts for overload over different types.
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			193 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			193 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef OPENMW_COMPONENTS_ESM_DECOMPOSE_H
 | 
						|
#define OPENMW_COMPONENTS_ESM_DECOMPOSE_H
 | 
						|
 | 
						|
namespace ESM
 | 
						|
{
 | 
						|
    template <class T>
 | 
						|
    void decompose(T&& value, const auto& apply) = delete;
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |