1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-29 23:07:48 +02:00

Removed boost::iostreams in favor of std::stream / boost::filesystem

This commit is contained in:
Ivan Savenko
2023-07-24 19:42:19 +03:00
parent fbe6c313d9
commit 21a39f0b01
17 changed files with 72 additions and 273 deletions

View File

@@ -14,8 +14,6 @@
VCMI_LIB_NAMESPACE_BEGIN
class FileStream;
class DLL_LINKAGE CSaverBase
{
protected:
@@ -392,7 +390,7 @@ public:
BinarySerializer serializer;
boost::filesystem::path fName;
std::unique_ptr<FileStream> sfile;
std::unique_ptr<boost::filesystem::fstream> sfile;
CSaveFile(const boost::filesystem::path &fname); //throws!
~CSaveFile();