(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.35.18.1 and 1.40

version 1.35.18.1, 2008/01/16 13:22:59 version 1.40, 2008/05/07 20:18:45
Line 63 
Line 63 
         const CIMName& classOrigin,         const CIMName& classOrigin,
         Boolean propagated);         Boolean propagated);
  
     ~CIMMethodRep();      ~CIMMethodRep()
       {
       }
  
     virtual const CIMName& getName() const     virtual const CIMName& getName() const
     {     {
         return _name;         return _name;
     }     }
  
     const Uint32 getNameTag() const      Uint32 getNameTag() const
     {     {
         return _nameTag;         return _nameTag;
     }     }
Line 94 
Line 96 
         return _type;         return _type;
     }     }
  
     void setType(CIMType type);      void setType(CIMType type)
       {
           _type = type;
       }
  
     const CIMName& getClassOrigin() const     const CIMName& getClassOrigin() const
     {     {
         return _classOrigin;         return _classOrigin;
     }     }
  
     void setClassOrigin(const CIMName& classOrigin);      void setClassOrigin(const CIMName& classOrigin)
       {
           _classOrigin = classOrigin;
       }
  
     Boolean getPropagated() const     Boolean getPropagated() const
     {     {
Line 147 
Line 155 
  
     void addParameter(const CIMParameter& x);     void addParameter(const CIMParameter& x);
  
     Uint32 findParameter(const CIMName& name) const;      Uint32 findParameter(const CIMName& name) const
       {
           return _parameters.find(name, generateCIMNameTag(name));
       }
  
     CIMParameter getParameter(Uint32 index);      CIMParameter getParameter(Uint32 index)
       {
           return _parameters[index];
       }
  
     CIMConstParameter getParameter(Uint32 index) const     CIMConstParameter getParameter(Uint32 index) const
     {     {
         return ((CIMMethodRep*)this)->getParameter(index);         return ((CIMMethodRep*)this)->getParameter(index);
     }     }
  
     void removeParameter (Uint32 index);      void removeParameter (Uint32 index)
       {
           _parameters.remove (index);
       }
  
     Uint32 getParameterCount() const;      Uint32 getParameterCount() const
       {
           return _parameters.size();
       }
  
     void resolve(     void resolve(
         DeclContext* declContext,         DeclContext* declContext,
Line 169 
Line 189 
         DeclContext* declContext,         DeclContext* declContext,
         const CIMNamespaceName& nameSpace);         const CIMNamespaceName& nameSpace);
  
     void toXml(Buffer& out) const;  
   
     void toMof(Buffer& out) const;  
   
     Boolean identical(const CIMMethodRep* x) const;     Boolean identical(const CIMMethodRep* x) const;
  
     CIMMethodRep* clone() const     CIMMethodRep* clone() const
Line 182 
Line 198 
  
 private: private:
  
     CIMMethodRep();  
   
     CIMMethodRep(const CIMMethodRep& x);     CIMMethodRep(const CIMMethodRep& x);
  
     // This method is declared and made private so that the compiler does      CIMMethodRep();    // Unimplemented
     // not implicitly define a default copy constructor.      CIMMethodRep& operator=(const CIMMethodRep& x);    // Unimplemented
     CIMMethodRep& operator=(const CIMMethodRep& x)  
     {  
         //PEGASUS_ASSERT(0);  
         return *this;  
     }  
  
     CIMName _name;     CIMName _name;
     CIMType _type;     CIMType _type;


Legend:
Removed from v.1.35.18.1  
changed lines
  Added in v.1.40

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2