#pragma once #include #include namespace fnd { namespace io { void readFile(const std::string& path, MemoryBlob& blob); void writeFile(const std::string& path, const MemoryBlob& blob); void writeFile(const std::string& path, const byte_t* data, size_t len); } }