1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-06 00:55:50 +00:00
OpenMW/components/files/hash.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
273 B
C++
Raw Normal View History

#ifndef COMPONENTS_FILES_HASH_H
#define COMPONENTS_FILES_HASH_H
2021-11-15 16:40:22 +00:00
#include <array>
#include <cstdint>
#include <filesystem>
#include <iosfwd>
namespace Files
{
std::array<std::uint64_t, 2> getHash(const std::filesystem::path& fileName, std::istream& stream);
}
#endif