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

Diff for /pegasus/src/Pegasus/Common/CIMParameter.cpp between version 1.17 and 1.22

version 1.17, 2002/07/30 16:14:53 version 1.22, 2002/08/27 23:38:44
Line 140 
Line 140 
     return _rep->findQualifier(name);     return _rep->findQualifier(name);
 } }
  
 CIMQualifier CIMParameter::getQualifier(Uint32 pos)  CIMQualifier CIMParameter::getQualifier(Uint32 index)
 { {
     _checkRep();     _checkRep();
     return _rep->getQualifier(pos);      return _rep->getQualifier(index);
 } }
  
 CIMConstQualifier CIMParameter::getQualifier(Uint32 pos) const  CIMConstQualifier CIMParameter::getQualifier(Uint32 index) const
 { {
     _checkRep();     _checkRep();
     return _rep->getQualifier(pos);      return _rep->getQualifier(index);
   }
   
   void CIMParameter::removeQualifier (Uint32 index)
   {
       _checkRep ();
       _rep->removeQualifier (index);
 } }
  
 Uint32 CIMParameter::getQualifierCount() const Uint32 CIMParameter::getQualifierCount() const
Line 158 
Line 164 
     return _rep->getQualifierCount();     return _rep->getQualifierCount();
 } }
  
 Boolean CIMParameter::isNull() const  Boolean CIMParameter::isUninitialized() const
 { {
     return (_rep == 0)? true : false;     return (_rep == 0)? true : false;
 } }
Line 178 
Line 184 
 void CIMParameter::_checkRep() const void CIMParameter::_checkRep() const
 { {
     if (!_rep)     if (!_rep)
         ThrowUninitializedHandle();          throw UninitializedObjectException();
 } }
  
  
Line 275 
Line 281 
     return _rep->findQualifier(name);     return _rep->findQualifier(name);
 } }
  
 CIMConstQualifier CIMConstParameter::getQualifier(Uint32 pos) const  CIMConstQualifier CIMConstParameter::getQualifier(Uint32 index) const
 { {
     _checkRep();     _checkRep();
     return _rep->getQualifier(pos);      return _rep->getQualifier(index);
 } }
  
 Uint32 CIMConstParameter::getQualifierCount() const Uint32 CIMConstParameter::getQualifierCount() const
Line 287 
Line 293 
     return _rep->getQualifierCount();     return _rep->getQualifierCount();
 } }
  
 Boolean CIMConstParameter::isNull() const  Boolean CIMConstParameter::isUninitialized() const
 { {
     return (_rep == 0)? true : false;     return (_rep == 0)? true : false;
 } }
Line 307 
Line 313 
 void CIMConstParameter::_checkRep() const void CIMConstParameter::_checkRep() const
 { {
     if (!_rep)     if (!_rep)
         ThrowUninitializedHandle();          throw UninitializedObjectException();
 } }
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2