I am trying to write a generic sort function in C++ using templates, but I am stuck in writing the greater function which returns true if lhs > rhs
template <typename T>
bool Sorter<T>::greater(T lhs, T rhs)
{
return lhs > rhs;
}
The above code will take care of simple types such as int, long. What should I do so that the code works for std::string, std::string&, const char *. A code sample will be a great help.

return lhs > rhs. – avakar Nov 22 '12 at 14:29>-operator. How do you suppose to mangestd::string,std::string&,const char *proceed a lexicographical comparison ? – triclosan Nov 22 '12 at 14:31<. – axiom Nov 22 '12 at 14:32