You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
428 B
C++
27 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
|