CARMA C++
Sort.h
Go to the documentation of this file.
1 // $Id: Sort.h,v 1.2 2013/08/20 21:56:51 eml Exp $
2 
3 #ifndef SZA_UTIL_SORT_H
4 #define SZA_UTIL_SORT_H
5 
16 #include <iostream>
17 #include <vector>
18 #include <string>
19 
20 namespace sza {
21  namespace util {
22 
23  class Sort {
24  public:
25 
29  Sort();
30 
34  virtual ~Sort();
35 
36  static std::vector<std::string> sort(std::vector<std::string>& entries);
37  static std::vector<std::string> sortNumeric(std::vector<std::string>& entries);
38 
39  }; // End class Sort
40 
41  } // End namespace util
42 } // End namespace sza
43 
44 
45 
46 #endif // End #ifndef SZA_UTIL_SORT_H