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

Diff for /pegasus/src/Pegasus/Common/CIMMethod.cpp between version 1.22 and 1.23

version 1.22, 2002/08/20 17:39:37 version 1.23, 2002/08/27 23:38:44
Line 149 
Line 149 
     return _rep->findQualifier(name);     return _rep->findQualifier(name);
 } }
  
 CIMQualifier CIMMethod::getQualifier(Uint32 pos)  CIMQualifier CIMMethod::getQualifier(Uint32 index)
 { {
     _checkRep();     _checkRep();
     return _rep->getQualifier(pos);      return _rep->getQualifier(index);
 } }
  
 CIMConstQualifier CIMMethod::getQualifier(Uint32 pos) const  CIMConstQualifier CIMMethod::getQualifier(Uint32 index) const
 { {
     _checkRep();     _checkRep();
     return _rep->getQualifier(pos);      return _rep->getQualifier(index);
 } }
  
 void CIMMethod::removeQualifier(Uint32 pos)  void CIMMethod::removeQualifier(Uint32 index)
 { {
     _checkRep();     _checkRep();
     _rep->removeQualifier(pos);      _rep->removeQualifier(index);
 } }
  
 Uint32 CIMMethod::getQualifierCount() const Uint32 CIMMethod::getQualifierCount() const
Line 186 
Line 186 
     return _rep->findParameter(name);     return _rep->findParameter(name);
 } }
  
 CIMParameter CIMMethod::getParameter(Uint32 pos)  CIMParameter CIMMethod::getParameter(Uint32 index)
 { {
     _checkRep();     _checkRep();
     return _rep->getParameter(pos);      return _rep->getParameter(index);
 } }
  
 CIMConstParameter CIMMethod::getParameter(Uint32 pos) const  CIMConstParameter CIMMethod::getParameter(Uint32 index) const
 { {
     _checkRep();     _checkRep();
     return _rep->getParameter(pos);      return _rep->getParameter(index);
 } }
  
 void CIMMethod::removeParameter (Uint32 pos)  void CIMMethod::removeParameter (Uint32 index)
 { {
     _checkRep ();     _checkRep ();
     _rep->removeParameter (pos);      _rep->removeParameter (index);
 } }
  
 Uint32 CIMMethod::getParameterCount() const Uint32 CIMMethod::getParameterCount() const
Line 319 
Line 319 
     return _rep->findQualifier(name);     return _rep->findQualifier(name);
 } }
  
 CIMConstQualifier CIMConstMethod::getQualifier(Uint32 pos) const  CIMConstQualifier CIMConstMethod::getQualifier(Uint32 index) const
 { {
     _checkRep();     _checkRep();
     return _rep->getQualifier(pos);      return _rep->getQualifier(index);
 } }
  
 Uint32 CIMConstMethod::getQualifierCount() const Uint32 CIMConstMethod::getQualifierCount() const
Line 337 
Line 337 
     return _rep->findParameter(name);     return _rep->findParameter(name);
 } }
  
 CIMConstParameter CIMConstMethod::getParameter(Uint32 pos) const  CIMConstParameter CIMConstMethod::getParameter(Uint32 index) const
 { {
     _checkRep();     _checkRep();
     return _rep->getParameter(pos);      return _rep->getParameter(index);
 } }
  
 Uint32 CIMConstMethod::getParameterCount() const Uint32 CIMConstMethod::getParameterCount() const


Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2