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

Diff for /pegasus/src/Pegasus/Common/CIMInstance.h between version 1.30 and 1.31

version 1.30, 2002/03/22 00:48:56 version 1.31, 2002/04/29 15:11:42
Line 111 
Line 111 
         return _rep->getClassName();         return _rep->getClassName();
     }     }
  
       /** isClassName compares Name of the class with a String. This test performs
           a comparison of the classname component of the object
           with a String.  Note that this function was included specifically
           because the equality compare is not just a straight comparison
           because classnames are case independent.
           @param classname String containing the name for comparison
           @return True if it is the same class name (equalNoCase compare passes)
           or false if not.
       */
       const Boolean isClassName(const String& classname) const
       {
           _checkRep();
           return _rep->isClassName(classname);
   
       }
   
     const CIMReference& getPath() const     const CIMReference& getPath() const
     {     {
         _checkRep();         _checkRep();
Line 500 
Line 516 
         return _rep->getClassName();         return _rep->getClassName();
     }     }
  
       const Boolean isClassName(const String& classname) const
       {
           _checkRep();
           return _rep->isClassName(classname);
   
       }
   
     const CIMReference& getPath() const     const CIMReference& getPath() const
     {     {
         _checkRep();         _checkRep();


Legend:
Removed from v.1.30  
changed lines
  Added in v.1.31

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2