mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 21:49:56 +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
|