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

Diff for /pegasus/src/Pegasus/Common/CIMInstance.cpp between version 1.20 and 1.21

version 1.20, 2002/05/15 12:28:20 version 1.21, 2002/05/15 17:21:11
Line 23 
Line 23 
 // Author: Mike Brasher (mbrasher@bmc.com) // Author: Mike Brasher (mbrasher@bmc.com)
 // //
 // Modified By: Roger Kumpf, Hewlett-Packard Company (roger_kumpf@hp.com) // Modified By: Roger Kumpf, Hewlett-Packard Company (roger_kumpf@hp.com)
   //                              Karl Schopmeyer, (k.schopmeyer@opengroup.org)
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 164 
Line 165 
    return _rep->existsProperty(name);    return _rep->existsProperty(name);
 } }
  
 CIMProperty CIMInstance::getProperty(Uint32 pos)  CIMProperty CIMInstance::getProperty(Uint32 pos) throw(OutOfBounds)
 { {
     _checkRep();     _checkRep();
     return _rep->getProperty(pos);     return _rep->getProperty(pos);
 } }
  
 CIMConstProperty CIMInstance::getProperty(Uint32 pos) const  CIMConstProperty CIMInstance::getProperty(Uint32 pos) const throw(OutOfBounds)
 { {
     _checkRep();     _checkRep();
     return _rep->getProperty(pos);     return _rep->getProperty(pos);
 } }
  
 void CIMInstance::removeProperty(Uint32 pos)  void CIMInstance::removeProperty(Uint32 pos)  throw(OutOfBounds)
 { {
     _checkRep();     _checkRep();
     _rep->removeProperty(pos);     _rep->removeProperty(pos);


Legend:
Removed from v.1.20  
changed lines
  Added in v.1.21

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2