mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 10:16:42 +00:00
20 lines
450 B
C
20 lines
450 B
C
|
#pragma once
|
||
|
#include <string>
|
||
|
#include <fnd/memory_blob.h>
|
||
|
|
||
|
namespace fnd
|
||
|
{
|
||
|
class FileIO
|
||
|
{
|
||
|
public:
|
||
|
static void ReadFile(const std::string& path, MemoryBlob& blob);
|
||
|
//static void ReadFile(const char* path, MemoryBlob& blob, size_t offset, size_t size);
|
||
|
static void WriteFile(const std::string& path, const MemoryBlob& blob);
|
||
|
//static void WriteFile(const char* path, const MemoryBlob& blob, size_t offset, size_t size);
|
||
|
private:
|
||
|
|
||
|
};
|
||
|
}
|
||
|
|
||
|
|