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

Diff for /pegasus/src/Pegasus/Common/CIMMethodRep.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 36 
Line 36 
  
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
 #include <Pegasus/Common/Linkage.h> #include <Pegasus/Common/Linkage.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>
 #include <Pegasus/Common/CIMQualifier.h> #include <Pegasus/Common/CIMQualifier.h>
 #include <Pegasus/Common/CIMQualifierList.h> #include <Pegasus/Common/CIMQualifierList.h>
 #include <Pegasus/Common/CIMParameter.h> #include <Pegasus/Common/CIMParameter.h>
   #include <Pegasus/Common/CIMParameterRep.h>
 #include <Pegasus/Common/Sharable.h> #include <Pegasus/Common/Sharable.h>
 #include <Pegasus/Common/Pair.h> #include <Pegasus/Common/Pair.h>
   #include <Pegasus/Common/OrderedSet.h>
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
Line 67 
Line 70 
         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);
  
     CIMType getType() const     CIMType getType() const
Line 172 
Line 192 
     CIMName _classOrigin;     CIMName _classOrigin;
     Boolean _propagated;     Boolean _propagated;
     CIMQualifierList _qualifiers;     CIMQualifierList _qualifiers;
     Array<CIMParameter> _parameters;      Uint32 _nameTag;
       Uint32 _ownerCount;
   
       typedef OrderedSet<CIMParameter,
                          CIMParameterRep,
                          PEGASUS_PARAMETER_ORDEREDSET_HASHSIZE> ParameterSet;
       ParameterSet _parameters;
  
     friend class CIMClassRep;     friend class CIMClassRep;
 }; };


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