(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.32 and 1.39

version 1.32, 2002/08/20 17:39:37 version 1.39, 2004/10/17 20:39:16
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%2004////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001, 2002 BMC Software, Hewlett-Packard Company, IBM,  // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
 // The Open Group, Tivoli Systems  // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
   // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation, The Open Group.
   // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
 // of this software and associated documentation files (the "Software"), to // of this software and associated documentation files (the "Software"), to
Line 61 
Line 65 
     Inc(_rep = x._rep);     Inc(_rep = x._rep);
 } }
  
 CIMInstance::CIMInstance(const CIMObject& x) throw(DynamicCastFailedException)  CIMInstance::CIMInstance(const CIMObject& x)
 { {
     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))
         throw DynamicCastFailedException();         throw DynamicCastFailedException();
Line 124 
Line 128 
     return _rep->findQualifier(name);     return _rep->findQualifier(name);
 } }
  
 CIMQualifier CIMInstance::getQualifier(Uint32 pos)  CIMQualifier CIMInstance::getQualifier(Uint32 index)
   {
       _checkRep();
       return _rep->getQualifier(index);
   }
   
   CIMConstQualifier CIMInstance::getQualifier(Uint32 index) const
 { {
     _checkRep();     _checkRep();
     return _rep->getQualifier(pos);      return _rep->getQualifier(index);
 } }
  
 CIMConstQualifier CIMInstance::getQualifier(Uint32 pos) const  void CIMInstance::removeQualifier(Uint32 index)
 { {
     _checkRep();     _checkRep();
     return _rep->getQualifier(pos);      _rep->removeQualifier(index);
 } }
  
 Uint32 CIMInstance::getQualifierCount() const Uint32 CIMInstance::getQualifierCount() const
Line 155 
Line 165 
     return _rep->findProperty(name);     return _rep->findProperty(name);
 } }
  
 CIMProperty CIMInstance::getProperty(Uint32 pos) throw(IndexOutOfBoundsException)  CIMProperty CIMInstance::getProperty(Uint32 index)
 { {
     _checkRep();     _checkRep();
     return _rep->getProperty(pos);      return _rep->getProperty(index);
 } }
  
 CIMConstProperty CIMInstance::getProperty(Uint32 pos) const throw(IndexOutOfBoundsException)  CIMConstProperty CIMInstance::getProperty(Uint32 index) const
 { {
     _checkRep();     _checkRep();
     return _rep->getProperty(pos);      return _rep->getProperty(index);
 } }
  
 void CIMInstance::removeProperty(Uint32 pos)  throw(IndexOutOfBoundsException)  void CIMInstance::removeProperty(Uint32 index)
 { {
     _checkRep();     _checkRep();
     _rep->removeProperty(pos);      _rep->removeProperty(index);
 } }
  
 Uint32 CIMInstance::getPropertyCount() const Uint32 CIMInstance::getPropertyCount() const
Line 202 
Line 212 
     return _rep->buildPath(cimClass);     return _rep->buildPath(cimClass);
 } }
  
 String CIMInstance::toString() const  
 {  
     _checkRep();  
     return _rep->toString();  
 }  
   
 void CIMInstance::_checkRep() const void CIMInstance::_checkRep() const
 { {
     if (!_rep)     if (!_rep)
         throw UninitializedObjectException();         throw UninitializedObjectException();
 } }
  
   
   void CIMInstance::filter(Boolean includeQualifiers, Boolean includeClassOrigin,
                           const CIMPropertyList& propertyList)
   {
       _checkRep();
       _rep->filter(includeQualifiers, includeClassOrigin, propertyList);
   }
   
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
 // //
 // CIMConstInstance // CIMConstInstance
Line 235 
Line 247 
     Inc(_rep = x._rep);     Inc(_rep = x._rep);
 } }
  
 CIMConstInstance::CIMConstInstance(const CIMObject& x) throw(DynamicCastFailedException)  CIMConstInstance::CIMConstInstance(const CIMObject& x)
 { {
     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))
         throw DynamicCastFailedException();         throw DynamicCastFailedException();
Line 243 
Line 255 
 } }
  
 CIMConstInstance::CIMConstInstance(const CIMConstObject& x) CIMConstInstance::CIMConstInstance(const CIMConstObject& x)
     throw(DynamicCastFailedException)  
 { {
     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))
         throw DynamicCastFailedException();         throw DynamicCastFailedException();
Line 298 
Line 309 
     return _rep->findQualifier(name);     return _rep->findQualifier(name);
 } }
  
 CIMConstQualifier CIMConstInstance::getQualifier(Uint32 pos) const  CIMConstQualifier CIMConstInstance::getQualifier(Uint32 index) const
 { {
     _checkRep();     _checkRep();
     return _rep->getQualifier(pos);      return _rep->getQualifier(index);
 } }
  
 Uint32 CIMConstInstance::getQualifierCount() const Uint32 CIMConstInstance::getQualifierCount() const
Line 316 
Line 327 
     return _rep->findProperty(name);     return _rep->findProperty(name);
 } }
  
 CIMConstProperty CIMConstInstance::getProperty(Uint32 pos) const  CIMConstProperty CIMConstInstance::getProperty(Uint32 index) const
 { {
     _checkRep();     _checkRep();
     return _rep->getProperty(pos);      return _rep->getProperty(index);
 } }
  
 Uint32 CIMConstInstance::getPropertyCount() const Uint32 CIMConstInstance::getPropertyCount() const
Line 351 
Line 362 
     return _rep->buildPath(cimClass);     return _rep->buildPath(cimClass);
 } }
  
 String CIMConstInstance::toString() const  
 {  
     _checkRep();  
     return _rep->toString();  
 }  
   
 void CIMConstInstance::_checkRep() const void CIMConstInstance::_checkRep() const
 { {
     if (!_rep)     if (!_rep)


Legend:
Removed from v.1.32  
changed lines
  Added in v.1.39

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2