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

Diff for /pegasus/src/Pegasus/Common/XmlWriter.h between version 1.92 and 1.92.4.3

version 1.92, 2009/12/15 11:39:34 version 1.92.4.3, 2012/02/15 17:47:07
Line 57 
Line 57 
 #include <Pegasus/Common/Buffer.h> #include <Pegasus/Common/Buffer.h>
 #include <Pegasus/Common/StrLit.h> #include <Pegasus/Common/StrLit.h>
 #include <Pegasus/Common/XmlGenerator.h> #include <Pegasus/Common/XmlGenerator.h>
   #include <Pegasus/Common/NumericArg.h>
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
Line 111 
Line 112 
  
     static void appendValueObjectWithPathElement(     static void appendValueObjectWithPathElement(
         Buffer& out,         Buffer& out,
         const CIMObject& objectWithPath);          const CIMObject& objectWithPath,
           Boolean includeQualifiers = true,
           Boolean includeClassOrigin = true,
           const CIMPropertyList& propertyList = CIMPropertyList());
  
     static void appendValueReferenceElement(     static void appendValueReferenceElement(
         Buffer& out,         Buffer& out,
Line 124 
Line 128 
  
     static void appendValueNamedInstanceElement(     static void appendValueNamedInstanceElement(
         Buffer& out,         Buffer& out,
         const CIMInstance& namedInstance);          const CIMInstance& namedInstance,
           Boolean includeQualifiers = true,
           Boolean includeClassOrigin = true,
           const CIMPropertyList& propertyList = CIMPropertyList());
   
   //EXP_PULL_BEGIN  // KS_TODO relate this to the one above.
       static void appendValueInstanceWithPathElement(
           Buffer& out,
           const CIMInstance& namedInstance,
           Boolean includeQualifiers = true,
           Boolean includeClassOrigin = true,
           const CIMPropertyList& propertyList = CIMPropertyList());
   //EXP_PULL_END
  
     static void appendClassElement(     static void appendClassElement(
         Buffer& out,         Buffer& out,
Line 136 
Line 152 
  
     static void appendInstanceElement(     static void appendInstanceElement(
         Buffer& out,         Buffer& out,
         const CIMConstInstance& instance);          const CIMConstInstance& instance,
           Boolean includeQualifiers = true,
           Boolean includeClassOrigin = true,
           const CIMPropertyList& propertyList = CIMPropertyList());
   
  
     static void printInstanceElement(     static void printInstanceElement(
         const CIMConstInstance& instance,         const CIMConstInstance& instance,
Line 144 
Line 164 
  
     static void appendObjectElement(     static void appendObjectElement(
         Buffer& out,         Buffer& out,
         const CIMConstObject& object);          const CIMConstObject& object,
           Boolean includeQualifiers = true,
           Boolean includeClassOrigin = true,
           const CIMPropertyList& propertyList = CIMPropertyList());
  
     static void appendPropertyElement(     static void appendPropertyElement(
         Buffer& out,         Buffer& out,
         const CIMConstProperty& property);          const CIMConstProperty& property,
           Boolean includeQualifiers = true,
           Boolean includeClassOrigin = true);
  
     static void printPropertyElement(     static void printPropertyElement(
         const CIMConstProperty& property,         const CIMConstProperty& property,
Line 251 
Line 276 
         Buffer& out,         Buffer& out,
         const char* name,         const char* name,
         Boolean flag);         Boolean flag);
   //EXP_PULL_BEGIN
       static void appendBooleanParameter(
           Buffer& out,
           const char* name,
           Boolean flag);
   
       static void appendBooleanIReturnValue(
           Buffer& out,
           const char* name,
           Boolean flag);
   
       static void appendUint32IParameter(
           Buffer& out,
           const char* name,
           const Uint32Arg& val,
           const Boolean required);
   /* KS_PULL DELETE
       static void appendUint64Parameter(
           Buffer& out,
           const char* name,
           const Uint64 val);
   */
       static void appendUint64ReturnValue(
           Buffer& out,
           const char* name,
           const Uint64Arg& val);
   //EXP_PULL_END
  
     static void appendStringIParameter(     static void appendStringIParameter(
         Buffer& out,         Buffer& out,
         const char* name,         const char* name,
         const String& str);         const String& str);
  
   //EXP_PULL_BEGIN
       static void appendStringIParameterIfNotEmpty(
           Buffer& out,
           const char* name,
           const String& str);
   
       static void appendStringParameter(
           Buffer& out,
           const char* name,
           const String& str);
       static void appendStringIReturnValue(
           Buffer& out,
           const char* name,
           const String& str);
   //EXP_PULL_END
     static void appendClassNameIParameter(     static void appendClassNameIParameter(
         Buffer& out,         Buffer& out,
         const char* name,         const char* name,
Line 328 
Line 395 
         const String& messageId,         const String& messageId,
         HttpMethod httpMethod,         HttpMethod httpMethod,
         const ContentLanguageList& httpContentLanguages,         const ContentLanguageList& httpContentLanguages,
           const Buffer& bodyParams,
         const Buffer& body,         const Buffer& body,
         Uint64 serverResponseTime,         Uint64 serverResponseTime,
         Boolean isFirst = true,         Boolean isFirst = true,
Line 356 
Line 424 
         const String& messageId,         const String& messageId,
         HttpMethod httpMethod,         HttpMethod httpMethod,
         const ContentLanguageList& httpContentLanguages,         const ContentLanguageList& httpContentLanguages,
           const Buffer& rtnParams,
         const Buffer& body,         const Buffer& body,
         Uint64 serverResponseTime,         Uint64 serverResponseTime,
         Boolean isFirst = true,         Boolean isFirst = true,
Line 445 
Line 514 
         static void _appendIMethodCallElementEnd(         static void _appendIMethodCallElementEnd(
         Buffer& out);         Buffer& out);
  
   //EXP_PULL_BEGIN
       static void _appendParamValueElementBegin(
           Buffer& out,
           const char* name);
   //EXP_PULL_END
       static void _appendParamValueElementEnd(
           Buffer& out);
   
     static void _appendIParamValueElementBegin(     static void _appendIParamValueElementBegin(
         Buffer& out,         Buffer& out,
         const char* name);         const char* name);
   
         static void _appendIParamValueElementEnd(         static void _appendIParamValueElementEnd(
         Buffer& out);         Buffer& out);
  
Line 473 
Line 551 
     static void _appendIReturnValueElementBegin(Buffer& out);     static void _appendIReturnValueElementBegin(Buffer& out);
     static void _appendIReturnValueElementEnd(Buffer& out);     static void _appendIReturnValueElementEnd(Buffer& out);
  
       //EXP_PULL_BEGIN
       static void _appendIReturnValueElementWithNameBegin(
           Buffer& out,
           const char* name);
       // EXP_PULL_END
     static void _appendSimpleExportReqElementBegin(Buffer& out);     static void _appendSimpleExportReqElementBegin(Buffer& out);
     static void _appendSimpleExportReqElementEnd(Buffer& out);     static void _appendSimpleExportReqElementEnd(Buffer& out);
  


Legend:
Removed from v.1.92  
changed lines
  Added in v.1.92.4.3

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2