1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-07 12:54:00 +00:00
OpenMW/components/files/hash.hpp

15 lines
259 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 <iosfwd>
#include <string>
namespace Files
{
2021-11-15 16:40:22 +00:00
std::array<std::uint64_t, 2> getHash(const std::string& fileName, std::istream& stream);
}
#endif