Files
core/EpubFile/CEpubFile.h
Oleg Korshul 3825f0b224 Refactoring
2020-07-05 19:36:21 +03:00

23 lines
495 B
C++

#ifndef CEPUBFILE_H
#define CEPUBFILE_H
#include "src/EpubFile_global.h"
#include <map>
class EPUBFILE_EXPORT CEpubFile
{
std::wstring _fileName;
std::wstring _tempDir;
std::map <std::wstring, std::wstring> dataAboutFile;
public:
CEpubFile();
~CEpubFile();
bool IsEbubFile(const std::wstring& fileName);
void SetTempDirectory(const std::wstring& tempDir);
bool Convert(const std::wstring& inputFile, const std::wstring& outputFile);
};
#endif // CEPUBFILE_H