class cmpi::CMPIPredicate

Public Instance Methods

to_s() click to toggle source
  const char* string() {
    const CMPIBroker* broker = cmpi_broker();
    CMPIString *s = CDToString(broker, $self, NULL);
    const char *result = strdup(CMGetCharPtr(s));
    CMRelease(s);
    return result;
  }
#endif
}