(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.15.2.1 and 1.21

version 1.15.2.1, 2001/08/01 11:17:36 version 1.21, 2002/06/01 00:56:25
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 40 
Line 41 
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 class CIMMethod;  
 class CIMConstMethod; class CIMConstMethod;
 class DeclContext; class DeclContext;
  
Line 91 
Line 91 
     {     {
         _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 String& name) const
     {     {
         return _qualifiers.find(name);         return _qualifiers.find(name);
     }     }
     // ATTN:  
     Boolean existsQualifier(const String& name) const     Boolean existsQualifier(const String& name) const
     {     {
         return (findQualifier(name) != PEG_NOT_FOUND) ? true : false;         return (findQualifier(name) != PEG_NOT_FOUND) ? true : false;
Line 112 
Line 112 
     {     {
         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 126 
  
     void addParameter(const CIMParameter& x);     void addParameter(const CIMParameter& x);
  
     Uint32 findParameter(const String& name);      Uint32 findParameter(const String& name) const;
   
     Uint32 findParameter(const String& name) const  
     {  
         return ((CIMMethodRep*)this)->findParameter(name);  
     }  
  
     CIMParameter getParameter(Uint32 pos);     CIMParameter getParameter(Uint32 pos);
  
Line 153 
Line 148 
  
     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 170 
Line 163 
  
     CIMMethodRep(const CIMMethodRep& x);     CIMMethodRep(const CIMMethodRep& x);
  
     CIMMethodRep& operator=(const CIMMethodRep& x);      // This method is declared and made private so that the compiler does
       // not implicitly define a default copy constructor.
       CIMMethodRep& operator=(const CIMMethodRep& x)
       {
           //PEGASUS_ASSERT(0);
           return *this;
       }
  
     String _name;     String _name;
     CIMType _type;     CIMType _type;


Legend:
Removed from v.1.15.2.1  
changed lines
  Added in v.1.21

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2