2 #include "common/common.hpp"
3 #include "util/uuid_path.hpp"
11 SnapFilter(ObjectType ot,
const UUID &u,
int v = -1) : uu(u), type(ot), vertex(v){};
14 if (type < other.type) {
17 if (type > other.type) {
23 else if (other.uu < uu) {
26 return vertex < other.vertex;
30 return (uu == other.uu) && (vertex == other.vertex) && (type == other.type);
Definition: snap_filter.hpp:6
This class encapsulates a UUID and allows it to be uses as a value type.
Definition: uuid.hpp:16