mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-15 01:07:58 -05:00
Replace FileAPI with c++ streams and std::filesystem
This commit is contained in:
@ -1,10 +1,16 @@
|
||||
#pragma once
|
||||
|
||||
#include <ioapi.h>
|
||||
#include "Utils/FileAPI.h"
|
||||
#include <iostream>
|
||||
#include <istream>
|
||||
#include <ostream>
|
||||
|
||||
#include "ObjStream.h"
|
||||
|
||||
class FileToZlibWrapper
|
||||
{
|
||||
public:
|
||||
static zlib_filefunc_def CreateFunctions32ForFile(FileAPI::IFile* file);
|
||||
static zlib_filefunc_def CreateFunctions32ForFile(std::iostream* stream);
|
||||
static zlib_filefunc_def CreateFunctions32ForFile(std::istream* stream);
|
||||
static zlib_filefunc_def CreateFunctions32ForFile(std::ostream* stream);
|
||||
};
|
||||
|
Reference in New Issue
Block a user