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

Diff for /pegasus/src/Pegasus/Common/CIMPropertyRep.h between version 1.36 and 1.37

version 1.36, 2007/10/23 17:42:56 version 1.37, 2007/11/11 19:48:34
Line 35 
Line 35 
 #define Pegasus_PropertyRep_h #define Pegasus_PropertyRep_h
  
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
   #include <Pegasus/Common/Constants.h>
 #include <Pegasus/Common/InternalException.h> #include <Pegasus/Common/InternalException.h>
 #include <Pegasus/Common/String.h> #include <Pegasus/Common/String.h>
 #include <Pegasus/Common/CIMName.h> #include <Pegasus/Common/CIMName.h>
Line 43 
Line 44 
 #include <Pegasus/Common/CIMQualifierList.h> #include <Pegasus/Common/CIMQualifierList.h>
 #include <Pegasus/Common/Sharable.h> #include <Pegasus/Common/Sharable.h>
 #include <Pegasus/Common/Linkage.h> #include <Pegasus/Common/Linkage.h>
   #include <Pegasus/Common/OrderedSet.h>
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
Line 70 
Line 72 
         return _name;         return _name;
     }     }
  
       const Uint32 getNameTag() const
       {
           return _nameTag;
       }
   
       void increaseOwnerCount()
       {
           _ownerCount++;
           return;
       }
   
       void decreaseOwnerCount()
       {
           _ownerCount++;
           return;
       }
   
     void setName(const CIMName& name);     void setName(const CIMName& name);
  
     const CIMValue& getValue() const     const CIMValue& getValue() const
Line 177 
Line 196 
     CIMName _classOrigin;     CIMName _classOrigin;
     Boolean _propagated;     Boolean _propagated;
     CIMQualifierList _qualifiers;     CIMQualifierList _qualifiers;
       Uint32 _nameTag;
   
       // Number of containers in which this property is a member. Adding a
       // property to a container increments this count. Removing a property
       // from a container decrements this count. When this count is non-zero,
       // any attempt to change the _name member results in an exception (see
       // setName()).
       Uint32 _ownerCount;
  
     friend class CIMClassRep;     friend class CIMClassRep;
       friend class CIMObjectRep;
       friend class CIMProperty;
       friend class CIMPropertyInternal;
 }; };
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.36  
changed lines
  Added in v.1.37

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2