blob: bc49305f45a7a9098f4d650e02e0dd94191ee4f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include <cstdint>
#include <filesystem>
#include <string>
#include <vector>
namespace File {
std::vector<uint8_t> getFile(const std::filesystem::path& filename);
void setFile(const std::filesystem::path& filename, const std::string& s);
void setFile(const std::filesystem::path& filename, const char* data, size_t size);
void setFile(const std::filesystem::path& filename, const std::vector<uint8_t>& data);
}
|