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

Diff for /pegasus/src/Pegasus/Common/CIMPropertyList.cpp between version 1.22 and 1.23

version 1.22, 2011/03/29 05:15:47 version 1.23, 2013/09/26 16:04:18
Line 224 
Line 224 
     _rep->cimNameTags.append(nameTag);     _rep->cimNameTags.append(nameTag);
 } }
  
   String CIMPropertyList::toString() const
   {
       if (_rep->isNull)
       {
           return("NULL");
       }
   
       if (_rep->propertyNames.size() == 0)
       {
           return("EMPTY");
       }
   
       String rtn(_rep->propertyNames[0].getString());
       for (Uint32 i = 1 ; i < _rep->propertyNames.size() ; i++)
       {
           rtn.append(", ");
           rtn.append(_rep->propertyNames[i].getString());
       }
       return(rtn);
   }
   
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2