Ejemplo n.º 1
0
CXString clang_constructUSR_ObjCProperty(const char *property,
                                         CXString classUSR) {
  USRGenerator UG;
  UG << extractUSRSuffix(clang_getCString(classUSR));
  UG->GenObjCProperty(property);
  return cxstring::createDup(UG.str());
}
Ejemplo n.º 2
0
 CXString lfort_constructUSR_ObjCProperty(const char *property,
         CXString classUSR) {
     USRGenerator UG;
     UG << extractUSRSuffix(lfort_getCString(classUSR));
     UG->GenObjCProperty(property);
     return createCXString(UG.str(), true);
 }