My Project
 All Classes Files Functions Variables Enumerations Enumerator Friends Macros Pages
Sort.h
Go to the documentation of this file.
1 // $Id: Sort.h,v 1.1.1.1 2009/07/06 23:57:26 eml Exp $
2 
3 #ifndef GCP_UTIL_SORT_H
4 #define GCP_UTIL_SORT_H
5 
16 #include <iostream>
17 #include <vector>
18 #include <string>
19 
20 namespace gcp {
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 
38  }; // End class Sort
39 
40  } // End namespace util
41 } // End namespace gcp
42 
43 
44 
45 #endif // End #ifndef GCP_UTIL_SORT_H
Sort()
Definition: Sort.cc:15
virtual ~Sort()
Definition: Sort.cc:21
Definition: Sort.h:23