Play-/Source/saves/XpsSaveImporter.h
2018-04-30 21:01:23 +01:00

19 lines
395 B
C++

#ifndef _XPSSAVEIMPORTER_H_
#define _XPSSAVEIMPORTER_H_
#include "SaveImporterBase.h"
class CXpsSaveImporter : public CSaveImporterBase
{
public:
CXpsSaveImporter();
virtual ~CXpsSaveImporter();
virtual void Import(Framework::CStream&, const boost::filesystem::path&);
private:
void ExtractFiles(Framework::CStream&, const boost::filesystem::path&, uint32);
};
#endif