Horizon
item_set.hpp
1 #pragma once
2 #include "uuid.hpp"
3 #include "common/common.hpp"
4 #include <set>
5 
6 namespace horizon {
7 using ItemSet = std::set<std::pair<ObjectType, UUID>>;
8 }