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

Diff for /pegasus/src/Pegasus/Common/CIMValue.h between version 1.16 and 1.17

version 1.16, 2002/03/04 15:10:05 version 1.17, 2002/03/24 13:33:07
Line 319 
Line 319 
     void set(const Array<CIMReference>& x);     void set(const Array<CIMReference>& x);
  
     /** get - Gets the value of a CIMValue     /** get - Gets the value of a CIMValue
         @param ATTNDOC:          @param Variable in which we return the value:
         @return ATTNDOC:          @return void
                   <pre>
                   Uint32 v;
                   CIMValue value(CIMValue::UINT32, UINT32(99));
                   value.get(v);
                   </pre>
     */     */
     void get(Boolean& x) const;     void get(Boolean& x) const;
     ///     ///
Line 462 
Line 467 
         const CIMValue& x,         const CIMValue& x,
         const CIMValue& y);         const CIMValue& y);
 }; };
   /** operator == compares two CIMValue objects for equality.
           @param x - First CIMvalue to compare
           @parm y - Second CIMValue to compare
           @return True if they are identical in type, attribute and value.
   */
 PEGASUS_COMMON_LINKAGE Boolean operator==(const CIMValue& x, const CIMValue& y); PEGASUS_COMMON_LINKAGE Boolean operator==(const CIMValue& x, const CIMValue& y);
  
   /** operator != compares two CIMValue objects for nonequality
   */
 inline Boolean operator!=(const CIMValue& x, const CIMValue& y) inline Boolean operator!=(const CIMValue& x, const CIMValue& y)
 { {
     return !operator==(x, y);     return !operator==(x, y);


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2