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

Diff for /pegasus/src/Pegasus/Common/CIMPropertyList.cpp between version 1.5 and 1.10

version 1.5, 2002/07/19 19:43:44 version 1.10, 2004/05/31 10:47:41
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%2003////////////////////////////////////////////////////////////////////////
 // //
 // 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.
 // //
 // 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 34 
Line 36 
 class CIMPropertyListRep class CIMPropertyListRep
 { {
 public: public:
     Array<String> propertyNames;      Array<CIMName> propertyNames;
     Boolean isNull;     Boolean isNull;
 }; };
  
Line 52 
Line 54 
     _rep->isNull = x._rep->isNull;     _rep->isNull = x._rep->isNull;
 } }
  
 CIMPropertyList::CIMPropertyList(const Array<String>& propertyNames)  CIMPropertyList::CIMPropertyList(const Array<CIMName>& propertyNames)
 { {
     _rep = new CIMPropertyListRep();     _rep = new CIMPropertyListRep();
     _rep->propertyNames = propertyNames;     _rep->propertyNames = propertyNames;
Line 64 
Line 66 
     delete _rep;     delete _rep;
 } }
  
 void CIMPropertyList::set(const Array<String>& propertyNames)  void CIMPropertyList::set(const Array<CIMName>& propertyNames)
 { {
     _rep->propertyNames = propertyNames;     _rep->propertyNames = propertyNames;
     _rep->isNull = false;     _rep->isNull = false;
Line 97 
Line 99 
     return _rep->propertyNames.size();     return _rep->propertyNames.size();
 } }
  
 const String& CIMPropertyList::operator[](Uint32 pos) const  const CIMName& CIMPropertyList::operator[](Uint32 index) const
 { {
     return _rep->propertyNames[pos];      return _rep->propertyNames[index];
 } }
  
 Array<String> CIMPropertyList::getPropertyNameArray() const  Array<CIMName> CIMPropertyList::getPropertyNameArray() const
 { {
     return _rep->propertyNames;     return _rep->propertyNames;
 } }


Legend:
Removed from v.1.5  
changed lines
  Added in v.1.10

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2