(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.20

version 1.17, 2002/07/30 16:14:53 version 1.20, 2002/08/15 15:52:29
Line 152 
Line 152 
     return _rep->getQualifier(pos);     return _rep->getQualifier(pos);
 } }
  
   void CIMParameter::removeQualifier (Uint32 pos)
   {
       _checkRep ();
       _rep->removeQualifier (pos);
   }
   
 Uint32 CIMParameter::getQualifierCount() const Uint32 CIMParameter::getQualifierCount() const
 { {
     _checkRep();     _checkRep();
     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 UninitializedObject ();
 } }
  
  
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 UninitializedObject ();
 } }
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2