hce-node application  1.4.3
HCE Hierarchical Cluster Engine node application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
SphinxResultAscSorter.hpp
Go to the documentation of this file.
1 
14 #ifndef SPHINXRESULTASCSORTER_HPP_
15 #define SPHINXRESULTASCSORTER_HPP_
16 
18 
19 namespace HCE
20 {
21 namespace sphinx
22 {
23 namespace reduce_task
24 {
25 
27 public:
29  virtual ~SphinxResultAscSorter();
30 
31  bool operator()(std::pair<std::string, unsigned long long> first,
32  std::pair<std::string, unsigned long long> second) const;
33 
34  virtual void sort(std::vector<std::pair<std::string, unsigned long long> > &
35  allWeightDocIds);
36 };
37 
38 }
39 }
40 }
41 
42 #endif