mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 11:56:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			428 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			428 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef OPENMW_ESSIMPORTER_IMPORTER_H
 | |
| #define OPENMW_ESSIMPORTER_IMPORTER_H
 | |
| 
 | |
| #include <string>
 | |
| 
 | |
| namespace ESSImport
 | |
| {
 | |
| 
 | |
|     class Importer
 | |
|     {
 | |
|     public:
 | |
|         Importer(const std::string& essfile, const std::string& outfile, const std::string& encoding);
 | |
| 
 | |
|         void run();
 | |
| 
 | |
|         void compare();
 | |
| 
 | |
|     private:
 | |
|         std::string mEssFile;
 | |
|         std::string mOutFile;
 | |
|         std::string mEncoding;
 | |
|     };
 | |
| 
 | |
| }
 | |
| 
 | |
| #endif
 |