mirror of
https://github.com/vcmi/vcmi.git
synced 2026-05-22 09:55:17 +02:00
43 lines
877 B
C++
43 lines
877 B
C++
/*
|
|
* CSaveFile.h, part of VCMI engine
|
|
*
|
|
* Authors: listed in file AUTHORS in main folder
|
|
*
|
|
* License: GNU General Public License v2.0 or later
|
|
* Full text of license available in license.txt file, in main folder
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
#include "BinarySerializer.h"
|
|
#include "CSerializer.h"
|
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
class DLL_LINKAGE CSaveFile final : public IBinaryWriter
|
|
{
|
|
BinarySerializer serializer;
|
|
std::vector<std::byte> saveData;
|
|
|
|
int write(const std::byte * data, unsigned size) final;
|
|
|
|
public:
|
|
CSaveFile();
|
|
|
|
template<class T>
|
|
void save(const T & data)
|
|
{
|
|
static_assert(is_serializeable<BinarySerializer, T>::value, "This class can't be serialized (possible pointer?)");
|
|
serializer & data;
|
|
}
|
|
|
|
void write(const boost::filesystem::path & fname);
|
|
|
|
const std::vector<std::byte> & currentContent() const
|
|
{
|
|
return saveData;
|
|
}
|
|
};
|
|
|
|
VCMI_LIB_NAMESPACE_END
|