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