class TopicSorter{ Query query_; public: TopicSorter(Query query){ query_ = query; } bool operator()(Topic t1, Topic t2) const { return compareTopics( t1 , t2 , query_); } };