diff options
author | Roland Reichwein <mail@reichwein.it> | 2023-02-12 15:56:29 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2023-02-12 15:56:29 +0100 |
commit | 5d2a6916cacdda97431c1e4c73660c3f6db615e8 (patch) | |
tree | 3ac3398ea983cdf1d046cbc4fe64c3f7f2bea9d3 /file.h | |
parent | e724452c00a56d0579ea685f90da6200993de5e0 (diff) |
Diffstat (limited to 'file.h')
-rw-r--r-- | file.h | 15 |
1 files changed, 0 insertions, 15 deletions
@@ -1,15 +0,0 @@ -#pragma once - -#include <cstdint> -#include <filesystem> -#include <string> -#include <vector> - -namespace File { - -std::string 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); - -} |