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

Diff for /pegasus/src/Pegasus/Common/CIMClassRep.h between version 1.7 and 1.10

version 1.7, 2001/05/20 20:33:59 version 1.10, 2001/05/21 20:01:57
Line 73 
Line 73 
         return _qualifiers.find(name);         return _qualifiers.find(name);
     }     }
  
       Boolean existsQualifier(const String& name) const
       {
           return ((_qualifiers.find(name) != Uint32(-1)) ? true : false);
       }
   
     CIMQualifier getQualifier(Uint32 pos)     CIMQualifier getQualifier(Uint32 pos)
     {     {
         return _qualifiers.getQualifier(pos);         return _qualifiers.getQualifier(pos);
Line 88 
Line 93 
         return _qualifiers.getCount();         return _qualifiers.getCount();
     }     }
  
       void removeQualifier(Uint32 pos)
       {
       _qualifiers.removeQualifier(pos);
       }
   
     void addProperty(const CIMProperty& x);     void addProperty(const CIMProperty& x);
  
     void removeProperty(Uint32 pos);  
  
     Uint32 findProperty(const String& name);     Uint32 findProperty(const String& name);
  
Line 99 
Line 108 
         return ((CIMClassRep*)this)->findProperty(name);         return ((CIMClassRep*)this)->findProperty(name);
     }     }
  
       Boolean existsProperty(const String& name);
   
       Boolean existsProperty(const String& name) const
       {
           return ((CIMClassRep*)this)->existsProperty(name);
       }
   
     CIMProperty getProperty(Uint32 pos);     CIMProperty getProperty(Uint32 pos);
  
     CIMConstProperty getProperty(Uint32 pos) const     CIMConstProperty getProperty(Uint32 pos) const
Line 106 
Line 122 
         return ((CIMClassRep*)this)->getProperty(pos);         return ((CIMClassRep*)this)->getProperty(pos);
     }     }
  
       void removeProperty(Uint32 pos);
   
   
     Uint32 getPropertyCount() const;     Uint32 getPropertyCount() const;
  
     void addMethod(const CIMMethod& x);     void addMethod(const CIMMethod& x);
Line 117 
Line 136 
         return ((CIMClassRep*)this)->findMethod(name);         return ((CIMClassRep*)this)->findMethod(name);
     }     }
  
       Boolean existsMethod(const String& name);
   
       Boolean existsMethod(const String& name) const
       {
           return ((CIMClassRep*)this)->existsMethod(name);
       }
   
   
     CIMMethod getMethod(Uint32 pos);     CIMMethod getMethod(Uint32 pos);
  
     CIMConstMethod getMethod(Uint32 pos) const     CIMConstMethod getMethod(Uint32 pos) const
Line 124 
Line 151 
         return ((CIMClassRep*)this)->getMethod(pos);         return ((CIMClassRep*)this)->getMethod(pos);
     }     }
  
       void removeMethod(Uint32 pos);
   
     Uint32 getMethodCount() const;     Uint32 getMethodCount() const;
  
     void resolve(     void resolve(


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2