Beispiel #1
0
bool
MyString::operator > ( const MyString& src ) const {
   string a, b;

   a = str();
   b = src.str();

   return a > b;
}