#include "AudioPacketsComparator.hpp" namespace drp::event { bool AudioPacketsComparator::operator()(const packet::AudioPacket& a, const packet::AudioPacket& b) const { return a.timePlay > b.timePlay; } }