mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
16 lines
305 B
C++
16 lines
305 B
C++
#pragma once
|
|
|
|
#include "zip/ZipFile.h"
|
|
|
|
class CMemoryStateFile : public Framework::CZipFile
|
|
{
|
|
public:
|
|
CMemoryStateFile(const char*, const void*, size_t);
|
|
virtual ~CMemoryStateFile() = default;
|
|
|
|
void Write(Framework::CStream&) override;
|
|
|
|
private:
|
|
const void* m_memory = nullptr;
|
|
size_t m_size = 0;
|
|
};
|