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

Diff for /pegasus/src/Pegasus/Common/CIMObject.h between version 1.13 and 1.15

version 1.13, 2002/04/29 15:11:42 version 1.15, 2002/04/30 18:03:11
Line 85 
Line 85 
     {     {
         if (x._rep != _rep)         if (x._rep != _rep)
         {         {
               if (_rep)
               {
             Dec(_rep);             Dec(_rep);
               }
             Inc(_rep = x._rep);             Inc(_rep = x._rep);
         }         }
         return *this;         return *this;
Line 103 
Line 106 
     */     */
     ~CIMObject()     ~CIMObject()
     {     {
           if (_rep)
           {
         Dec(_rep);         Dec(_rep);
     }     }
       }
  
     /** Accessor for ClassName component of the object.     /** Accessor for ClassName component of the object.
         @return - Returns the ClassName of the object in         @return - Returns the ClassName of the object in
Line 121 
Line 127 
         return _rep->getClassName();         return _rep->getClassName();
     }     }
  
     /** isClassName Compares ClassName with a String. This test performs      /** equalClassName Compares ClassName with a String. This test performs
         a comparison of the classname component of the object         a comparison of the classname component of the object
         with a String.  Note that this function was included specifically         with a String.  Note that this function was included specifically
         because the equality compare is not just a straight comparison         because the equality compare is not just a straight comparison
Line 130 
Line 136 
         @return True if it is the same class name (equalNoCase compare passes)         @return True if it is the same class name (equalNoCase compare passes)
         or false if not.         or false if not.
     */     */
     const Boolean isClassName(const String& classname) const      const Boolean equalClassName(const String& classname) const
     {     {
         _checkRep();         _checkRep();
         return _rep->isClassName(classname);          return _rep->equalClassName(classname);
  
     }     }
     const CIMReference& getPath() const     const CIMReference& getPath() const
Line 447 
Line 453 
     {     {
         if (x._rep != _rep)         if (x._rep != _rep)
         {         {
               if (_rep)
               {
             Dec(_rep);             Dec(_rep);
               }
             Inc(_rep = x._rep);             Inc(_rep = x._rep);
         }         }
         return *this;         return *this;
Line 457 
Line 466 
     {     {
         if (x._rep != _rep)         if (x._rep != _rep)
         {         {
               if (_rep)
               {
             Dec(_rep);             Dec(_rep);
               }
             Inc(_rep = x._rep);             Inc(_rep = x._rep);
         }         }
         return *this;         return *this;
Line 473 
Line 485 
  
     ~CIMConstObject()     ~CIMConstObject()
     {     {
           if (_rep)
           {
         Dec(_rep);         Dec(_rep);
     }     }
       }
  
     const String& getClassName() const     const String& getClassName() const
     {     {


Legend:
Removed from v.1.13  
changed lines
  Added in v.1.15

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2