TCut to string

If I have defined a TCut, how do I get the TString, char* or std::string that a TCut represents?

TCut c(“x>0”);
std::string s = c.str(); // “x>0” ?

c.GetTitle()