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

Diff for /pegasus/src/Pegasus/Common/CIMType.cpp between version 1.9 and 1.10

version 1.9, 2002/05/15 05:35:01 version 1.10, 2002/05/17 16:58:07
Line 47 
Line 47 
 { {
 } }
  
 #if 0  
 CIMType::CIMType(Uint32 tag) : _tag(Tag(tag))  
 {  
 }  
 #endif  
   
 CIMType::CIMType(const CIMType& x) : _tag(x._tag) CIMType::CIMType(const CIMType& x) : _tag(x._tag)
 { {
 } }
Line 78 
Line 72 
     return _typeStrings[Uint32(_tag)];     return _typeStrings[Uint32(_tag)];
 } }
  
   
   Boolean operator==(CIMType x, CIMType y)
   {
       return CIMType::Tag(x) == CIMType::Tag(y);
   }
   
   Boolean operator!=(CIMType x, CIMType y)
   {
       return CIMType::Tag(x) != CIMType::Tag(y);
   }
   
   Boolean operator==(CIMType x, CIMType::Tag y)
   {
       return x.equal(y);
   }
   
   Boolean operator==(CIMType::Tag x, CIMType y)
   {
       return y.equal(x);
   }
   
   Boolean operator!=(CIMType x, CIMType::Tag y)
   {
       return !operator==(x, y);
   }
   
   Boolean operator!=(CIMType::Tag x, CIMType y)
   {
       return !operator==(x, y);
   }
   
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2