Files
chaos/Chaos/Hashing/Hash.hpp
2025-08-09 17:28:53 +03:00

22 lines
302 B
C++

#ifndef CHAOS_HASHING_HASH_HPP
#define CHAOS_HASHING_HASH_HPP
#include <string>
namespace Chaos::Hashing
{
template<typename T>
class Hash
{
public:
std::string ToHexString() const
{
return static_cast<const T &>(*this).ToHexString();
}
};
} // namespace Chaos::Hashing
#endif