2015-01-16 23:11:36 +00:00
|
|
|
#ifndef OPENMW_ESSIMPORTER_IMPORTER_H
|
|
|
|
#define OPENMW_ESSIMPORTER_IMPORTER_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace ESSImport
|
|
|
|
{
|
|
|
|
|
|
|
|
class Importer
|
|
|
|
{
|
|
|
|
public:
|
2015-01-30 14:11:27 +00:00
|
|
|
Importer(const std::string& essfile, const std::string& outfile, const std::string& encoding);
|
2015-01-16 23:11:36 +00:00
|
|
|
|
|
|
|
void run();
|
|
|
|
|
|
|
|
void compare();
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::string mEssFile;
|
|
|
|
std::string mOutFile;
|
2015-01-30 14:11:27 +00:00
|
|
|
std::string mEncoding;
|
2015-01-16 23:11:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|