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

Diff for /pegasus/src/Pegasus/Common/CIMBuffer.cpp between version 1.10 and 1.11

version 1.10, 2011/01/07 02:17:20 version 1.11, 2011/03/29 05:15:47
Line 1575 
Line 1575 
  
         for (Uint32 i = 0; i < n; i++)         for (Uint32 i = 0; i < n; i++)
             putName(rep->propertyNames[i]);             putName(rep->propertyNames[i]);
   
           Uint32 tagCount = rep->cimNameTags.size();
           putUint32(tagCount);
   
           for(Uint32 j = 0; j < tagCount; j++)
           {
               putUint32(rep->cimNameTags[j]);
           }
     }     }
 } }
  
Line 1611 
Line 1619 
  
         x.~CIMPropertyList();         x.~CIMPropertyList();
         new(&x) CIMPropertyList(names);         new(&x) CIMPropertyList(names);
   
           Uint32 tagCount;
           getUint32(tagCount);
   
           for(Uint32 j=0;j<tagCount;j++)
           {
               Uint32 tag;
               getUint32(tag);
               x.appendCIMNameTag(tag);
           }
   
     }     }
  
     return true;     return true;


Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2