diff options
author | Roland Reichwein <mail@reichwein.it> | 2023-01-02 17:38:35 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2023-01-02 17:38:35 +0100 |
commit | 20ceb53ec1c1bc18face8e831292dfe81fed3817 (patch) | |
tree | a1107d98cf8699b28ef6034c09567f39c68b160b /file.h | |
parent | 0851f92abcb1e9d84c2748607ff8d548b582540c (diff) |
Separated out libreichwein (file.cpp)
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); - -} |