mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-21 09:23:53 +00:00
bef15edf0b
* Replace by std::to_string and operator+ where possible. * Move the code requiring to include <sstream> from .hpp to .cpp files.
14 lines
259 B
C++
14 lines
259 B
C++
#ifndef COMPONENTS_FILES_HASH_H
|
|
#define COMPONENTS_FILES_HASH_H
|
|
|
|
#include <array>
|
|
#include <cstdint>
|
|
#include <iosfwd>
|
|
#include <string>
|
|
|
|
namespace Files
|
|
{
|
|
std::array<std::uint64_t, 2> getHash(const std::string& fileName, std::istream& stream);
|
|
}
|
|
|
|
#endif
|