class cmpi::CMPIResult

* */

Public Instance Methods

done() click to toggle source

  void done() 
  {
    RAISE_IF(CMReturnDone($self));
  }
}
return_data(p1, p2) click to toggle source

Add typed value to the result

void return_data(const CMPIValue* value, const CMPIType type) 
  {
    RAISE_IF(CMReturnData($self, value, type));
  }

  void done() 
  {
    RAISE_IF(CMReturnDone($self));
  }
}
return_instance(p1) click to toggle source

Add the instance to the result

void return_instance(CMPIInstance *instance_disown) 
  {
    RAISE_IF(CMReturnInstance($self, instance_disown));
  }

  /* Add the +objectpath+ to the result */
  void return_objectpath(CMPIObjectPath *path_disown)
  {
    RAISE_IF(CMReturnObjectPath($self, path_disown));
  }

  /* Add typed value to the result */
  void return_data(const CMPIValue* value, const CMPIType type) 
  {
    RAISE_IF(CMReturnData($self, value, type));
  }

  void done() 
  {
    RAISE_IF(CMReturnDone($self));
  }
}
return_objectpath(p1) click to toggle source

Add the objectpath to the result

void return_objectpath(CMPIObjectPath *path_disown)
  {
    RAISE_IF(CMReturnObjectPath($self, path_disown));
  }

  /* Add typed value to the result */
  void return_data(const CMPIValue* value, const CMPIType type) 
  {
    RAISE_IF(CMReturnData($self, value, type));
  }

  void done() 
  {
    RAISE_IF(CMReturnDone($self));
  }
}