(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.27.2.1 and 1.28

version 1.27.2.1, 2002/10/28 15:43:21 version 1.28, 2003/10/22 14:26:02
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 32 
Line 34 
 #define Pegasus_MethodRep_h #define Pegasus_MethodRep_h
  
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
 #include <Pegasus/Common/Exception.h>  #include <Pegasus/Common/Linkage.h>
   #include <Pegasus/Common/InternalException.h>
 #include <Pegasus/Common/String.h> #include <Pegasus/Common/String.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/Sharable.h> #include <Pegasus/Common/Sharable.h>
 #include <Pegasus/Common/Pair.h> #include <Pegasus/Common/Pair.h>
 #include <Pegasus/Common/Linkage.h>  
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
Line 51 
Line 54 
 public: public:
  
     CIMMethodRep(     CIMMethodRep(
         const String& name,          const CIMName& name,
         CIMType type,         CIMType type,
         const String& classOrigin,          const CIMName& classOrigin,
         Boolean propagated);         Boolean propagated);
  
     ~CIMMethodRep();     ~CIMMethodRep();
  
     virtual const String& getName() const      virtual const CIMName& getName() const
     {     {
         return _name;         return _name;
     }     }
  
     void setName(const String& name);      void setName(const CIMName& name);
  
     CIMType getType() const     CIMType getType() const
     {     {
Line 72 
Line 75 
  
     void setType(CIMType type);     void setType(CIMType type);
  
     const String& getClassOrigin() const      const CIMName& getClassOrigin() const
     {     {
         return _classOrigin;         return _classOrigin;
     }     }
  
     void setClassOrigin(const String& classOrigin);      void setClassOrigin(const CIMName& classOrigin);
  
     Boolean getPropagated() const     Boolean getPropagated() const
     {     {
Line 94 
Line 97 
         _qualifiers.add(qualifier);         _qualifiers.add(qualifier);
     }     }
  
     Uint32 findQualifier(const String& name) const      Uint32 findQualifier(const CIMName& name) const
     {     {
         return _qualifiers.find(name);         return _qualifiers.find(name);
     }     }
  
     CIMQualifier getQualifier(Uint32 pos)      CIMQualifier getQualifier(Uint32 index)
     {     {
         return _qualifiers.getQualifier(pos);          return _qualifiers.getQualifier(index);
     }     }
  
  
     CIMConstQualifier getQualifier(Uint32 pos) const      CIMConstQualifier getQualifier(Uint32 index) const
     {     {
         return _qualifiers.getQualifier(pos);          return _qualifiers.getQualifier(index);
     }     }
  
     void removeQualifier(Uint32 pos)      void removeQualifier(Uint32 index)
     {     {
         _qualifiers.removeQualifier(pos);          _qualifiers.removeQualifier(index);
     }     }
  
  
Line 123 
Line 126 
  
     void addParameter(const CIMParameter& x);     void addParameter(const CIMParameter& x);
  
     Uint32 findParameter(const String& name) const;      Uint32 findParameter(const CIMName& name) const;
  
     CIMParameter getParameter(Uint32 pos);      CIMParameter getParameter(Uint32 index);
  
     CIMConstParameter getParameter(Uint32 pos) const      CIMConstParameter getParameter(Uint32 index) const
     {     {
         return ((CIMMethodRep*)this)->getParameter(pos);          return ((CIMMethodRep*)this)->getParameter(index);
     }     }
  
       void removeParameter (Uint32 index);
   
     Uint32 getParameterCount() const;     Uint32 getParameterCount() const;
  
     void resolve(     void resolve(
         DeclContext* declContext,         DeclContext* declContext,
         const String& nameSpace,          const CIMNamespaceName& nameSpace,
         const CIMConstMethod& method);         const CIMConstMethod& method);
  
     void resolve(     void resolve(
         DeclContext* declContext,         DeclContext* declContext,
         const String& nameSpace);          const CIMNamespaceName& nameSpace);
  
     void toXml(Array<Sint8>& out) const;     void toXml(Array<Sint8>& out) const;
  
Line 168 
Line 173 
         return *this;         return *this;
     }     }
  
     String _name;      CIMName _name;
     CIMType _type;     CIMType _type;
     String _classOrigin;      CIMName _classOrigin;
     Boolean _propagated;     Boolean _propagated;
     CIMQualifierList _qualifiers;     CIMQualifierList _qualifiers;
     Array<CIMParameter> _parameters;     Array<CIMParameter> _parameters;


Legend:
Removed from v.1.27.2.1  
changed lines
  Added in v.1.28

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2