(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.17 and 1.25

version 1.17, 2002/05/03 01:28:14 version 1.25, 2002/08/14 17:41:16
Line 1 
Line 1 
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001 The Open group, BMC Software, Tivoli Systems, IBM  // Copyright (c) 2000, 2001, 2002 BMC Software, Hewlett-Packard Company, IBM,
   // The Open Group, Tivoli Systems
 // //
 // 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 22 
Line 23 
 // //
 // Author: Mike Brasher (mbrasher@bmc.com) // Author: Mike Brasher (mbrasher@bmc.com)
 // //
 // Modified By:  // Modified By: Carol Ann Krug Graves, Hewlett-Packard Company
   //                (carolann_graves@hp.com)
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 30 
Line 32 
 #define Pegasus_MethodRep_h #define Pegasus_MethodRep_h
  
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
   #include <Pegasus/Common/Linkage.h>
 #include <Pegasus/Common/Exception.h> #include <Pegasus/Common/Exception.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>
Line 40 
Line 44 
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 class CIMMethod;  
 class CIMConstMethod; class CIMConstMethod;
 class DeclContext; class DeclContext;
  
Line 49 
Line 52 
 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 70 
Line 73 
  
     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 91 
Line 94 
     {     {
         _qualifiers.add(qualifier);         _qualifiers.add(qualifier);
     }     }
     // ATTN: ks 18 May.  Why no non-const version here  
     Uint32 findQualifier(const String& name) const      Uint32 findQualifier(const CIMName& name) const
     {     {
         return _qualifiers.find(name);         return _qualifiers.find(name);
     }     }
     // ATTN:  
     Boolean existsQualifier(const String& name) const  
     {  
         return (findQualifier(name) != PEG_NOT_FOUND) ? true : false;  
     }  
  
     CIMQualifier getQualifier(Uint32 pos)     CIMQualifier getQualifier(Uint32 pos)
     {     {
Line 112 
Line 110 
     {     {
         return _qualifiers.getQualifier(pos);         return _qualifiers.getQualifier(pos);
     }     }
     //  
     void removeQualifier(Uint32 pos)     void removeQualifier(Uint32 pos)
     {     {
         _qualifiers.removeQualifier(pos);         _qualifiers.removeQualifier(pos);
Line 126 
Line 124 
  
     void addParameter(const CIMParameter& x);     void addParameter(const CIMParameter& x);
  
     Uint32 findParameter(const String& name);      Uint32 findParameter(const CIMName& name) const;
   
     Uint32 findParameter(const String& name) const  
     {  
         return ((CIMMethodRep*)this)->findParameter(name);  
     }  
  
     CIMParameter getParameter(Uint32 pos);     CIMParameter getParameter(Uint32 pos);
  
Line 140 
Line 133 
         return ((CIMMethodRep*)this)->getParameter(pos);         return ((CIMMethodRep*)this)->getParameter(pos);
     }     }
  
       void removeParameter (Uint32 pos);
   
     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;
  
     virtual void print(PEGASUS_STD(ostream)& os = PEGASUS_STD(cout)) const;  
   
     void toMof(Array<Sint8>& out) const;     void toMof(Array<Sint8>& out) const;
  
     Boolean identical(const CIMMethodRep* x) const;     Boolean identical(const CIMMethodRep* x) const;
Line 174 
Line 167 
     // not implicitly define a default copy constructor.     // not implicitly define a default copy constructor.
     CIMMethodRep& operator=(const CIMMethodRep& x)     CIMMethodRep& operator=(const CIMMethodRep& x)
     {     {
         PEGASUS_ASSERT(0);          //PEGASUS_ASSERT(0);
         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.17  
changed lines
  Added in v.1.25

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2