(file) Return to CIMParamValueRep.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/CIMParamValueRep.cpp between version 1.16 and 1.16.2.1

version 1.16, 2002/09/05 01:02:43 version 1.16.2.1, 2002/10/28 15:43:21
Line 46 
Line 46 
  
 CIMParamValueRep::~CIMParamValueRep() CIMParamValueRep::~CIMParamValueRep()
 { {
   
 } }
  
 //------------------------------------------------------------------------------ //------------------------------------------------------------------------------
Line 62 
Line 63 
  
     CIMType type = _value.getType();     CIMType type = _value.getType();
  
     if (_isTyped)      if (_isTyped && (type != CIMTYPE_NONE))
     {     {
         out << " PARAMTYPE=\"" << cimTypeToString (type) << "\"";         out << " PARAMTYPE=\"" << cimTypeToString (type) << "\"";
     }     }
Line 73 
Line 74 
     out << "</PARAMVALUE>\n";     out << "</PARAMVALUE>\n";
 } }
  
   Boolean CIMParamValueRep::identical(const CIMParamValueRep* x) const
   {
       if (_parameterName != x->_parameterName)
           return false;
   
       if (_value != x->_value)
           return false;
   
       if (_isTyped != x->_isTyped)
           return false;
   
       return true;
   }
   
 CIMParamValueRep::CIMParamValueRep() CIMParamValueRep::CIMParamValueRep()
 { {
   
 } }
  
 CIMParamValueRep::CIMParamValueRep(const CIMParamValueRep& x) : CIMParamValueRep::CIMParamValueRep(const CIMParamValueRep& x) :


Legend:
Removed from v.1.16  
changed lines
  Added in v.1.16.2.1

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2