mirror of
https://github.com/libretro/Play-.git
synced 2024-12-02 22:46:23 +00:00
19 lines
395 B
C++
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
|