blob: fc1659789e7aed4eb32135fe912dbce4b4eebedd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "Swiften/Network/SRVRecord.h"
namespace Swift {
struct SRVRecordPriorityComparator {
bool operator()(const SRVRecord& a, const SRVRecord& b) const {
return a.priority < b.priority;
}
};
}
|