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

Diff for /pegasus/src/Pegasus/Common/CIMInternalXmlEncoder.cpp between version 1.2 and 1.3

version 1.2, 2009/12/15 11:39:33 version 1.3, 2011/01/25 11:24:24
Line 37 
Line 37 
  
 void CIMInternalXmlEncoder::_putXMLInstance( void CIMInternalXmlEncoder::_putXMLInstance(
     CIMBuffer& out,     CIMBuffer& out,
     const CIMInstance& ci)      const CIMInstance& ci,
       Boolean includeQualifiers,
       Boolean includeClassOrigin,
       const CIMPropertyList& propertyList)
 { {
     if (ci.isUninitialized())     if (ci.isUninitialized())
     {     {
Line 52 
Line 55 
  
         // Serialize instance as XML.         // Serialize instance as XML.
         {         {
             XmlWriter::appendInstanceElement(buf, ci);              XmlWriter::appendInstanceElement(
                   buf,
                   ci,
                   includeQualifiers,
                   includeClassOrigin,
                   propertyList);
             buf.append('\0');             buf.append('\0');
  
             out.putUint32(buf.size());             out.putUint32(buf.size());
Line 85 
Line 93 
  
 void CIMInternalXmlEncoder::_putXMLNamedInstance( void CIMInternalXmlEncoder::_putXMLNamedInstance(
     CIMBuffer& out,     CIMBuffer& out,
     const CIMInstance& ci)      const CIMInstance& ci,
       Boolean includeQualifiers,
       Boolean includeClassOrigin,
       const CIMPropertyList& propertyList)
 { {
     if (ci.isUninitialized())     if (ci.isUninitialized())
     {     {
Line 100 
Line 111 
  
         // Serialize instance as XML.         // Serialize instance as XML.
         {         {
             XmlWriter::appendInstanceElement(buf, ci);              XmlWriter::appendInstanceElement(
                   buf,
                   ci,
                   includeQualifiers,
                   includeClassOrigin,
                   propertyList);
             buf.append('\0');             buf.append('\0');
  
             out.putUint32(buf.size());             out.putUint32(buf.size());
Line 133 
Line 149 
  
 void CIMInternalXmlEncoder::_putXMLObject( void CIMInternalXmlEncoder::_putXMLObject(
     CIMBuffer& out,     CIMBuffer& out,
     const CIMObject& co)      const CIMObject& co,
       Boolean includeQualifiers,
       Boolean includeClassOrigin,
       const CIMPropertyList& propertyList)
 { {
     if (co.isUninitialized())     if (co.isUninitialized())
     {     {
Line 148 
Line 167 
  
         // Serialize instance as XML.         // Serialize instance as XML.
         {         {
             XmlWriter::appendObjectElement(buf, co);              XmlWriter::appendObjectElement(
                   buf,
                   co,
                   includeQualifiers,
                   includeClassOrigin,
                   propertyList);
             buf.append('\0');             buf.append('\0');
  
             out.putUint32(buf.size());             out.putUint32(buf.size());


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2