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

Diff for /pegasus/src/Pegasus/Common/CIMType.h between version 1.11 and 1.12

version 1.11, 2002/02/05 10:23:09 version 1.12, 2002/02/21 11:31:44
Line 90 
Line 90 
         REFERENCE         REFERENCE
     };     };
  
       /// Constructor
     CIMType() : _tag(NONE) { }     CIMType() : _tag(NONE) { }
  
       ///  Constructor
     CIMType(Tag tag) : _tag(tag) { }     CIMType(Tag tag) : _tag(tag) { }
  
       /// Constructor
     PEGASUS_EXPLICIT CIMType(Uint32 tag) : _tag(Tag(tag)) { }     PEGASUS_EXPLICIT CIMType(Uint32 tag) : _tag(Tag(tag)) { }
  
       ///  Constructor
     CIMType(const CIMType& x) : _tag(x._tag) { }     CIMType(const CIMType& x) : _tag(x._tag) { }
  
       /// operator =
     CIMType& operator=(Tag tag) { _tag = tag; return *this; }     CIMType& operator=(Tag tag) { _tag = tag; return *this; }
  
       ///
     operator Tag() const { return _tag; }     operator Tag() const { return _tag; }
  
       ///
     Boolean equal(const CIMType& x) const { return x._tag == _tag; }     Boolean equal(const CIMType& x) const { return x._tag == _tag; }
  
 private: private:


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2