RandomId.hpp
Go to the documentation of this file.
1 #pragma once
2 
4 
5 namespace iv
6 {
7 
10 class RandomId : public RuntimeId< RandomId >
11 {
12 public:
13  static constexpr char TypeName[] = "RandomId";
16 };
17 
18 }
19 
20 namespace std
21 {
22 template<>
23 struct hash< iv::RandomId > : public iv::hash< iv::RandomId >{};
24 }
25