(file) Return to handler.cpp CVS log (file) (dir) Up to [OMI] / omi / omiclient

Diff for /omi/omiclient/handler.cpp between version 1.2 and 1.3

version 1.2, 2015/04/20 18:10:13 version 1.3, 2015/04/20 18:19:55
Line 42 
Line 42 
 { {
 } }
  
 void Handler::HandleNoOp(Uint64 msgID)  void Handler::HandleNoOp(Uint64 operationId)
 { {
 } }
  
 void Handler::HandleInstance(Uint64 msgID, const DInstance& instance)  void Handler::HandleInstance(Uint64 operationId, const DInstance& instance)
 { {
     MI_UNUSED(instance);     MI_UNUSED(instance);
 } }
  
 void Handler::HandleResult(Uint64 msgID, MI_Result result)  void Handler::HandleResult(Uint64 operationId, MI_Result result)
 { {
     MI_UNUSED(result);     MI_UNUSED(result);
 } }
  
   /* If this version is not overridden then it calls into the original */
   void Handler::HandleResult(Uint64 operationId, MI_Result result, const MI_Char *errorMessage, const DInstance* cimError)
   {
       HandleResult(operationId, result);
       MI_UNUSED(errorMessage);
       MI_UNUSED(cimError);
   }
   
 MI_END_NAMESPACE MI_END_NAMESPACE


Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

ViewCVS 0.9.2