(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.5 and 1.10

version 1.5, 2001/04/08 01:13:21 version 1.10, 2001/05/21 20:01:57
Line 1 
Line 1 
 //BEGIN_LICENSE  //%/////////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000 The Open Group, BMC Software, Tivoli Systems, IBM // Copyright (c) 2000 The Open Group, BMC Software, Tivoli Systems, IBM
 // //
Line 17 
Line 17 
 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 // DEALINGS IN THE SOFTWARE. // DEALINGS IN THE SOFTWARE.
 // //
 //END_LICENSE  //==============================================================================
 //BEGIN_HISTORY  
 // //
 // Author:  // Author: Mike Brasher (mbrasher@bmc.com)
 // //
 // $Log$  // Modified By:
 // Revision 1.5  2001/04/08 01:13:21  mike  
 // Changed "ConstCIM" to "CIMConst"  
 // //
 // Revision 1.3  2001/02/20 05:16:57  mike  //%/////////////////////////////////////////////////////////////////////////////
 // Implemented CIMInstance::getInstanceName()  
 //  
 // Revision 1.2  2001/02/19 01:47:16  mike  
 // Renamed names of the form CIMConst to CIMConst.  
 //  
 // Revision 1.1  2001/02/18 18:39:05  mike  
 // new  
 //  
 // Revision 1.2  2001/02/18 03:56:00  mike  
 // Changed more class names (e.g., ConstClassDecl -> CIMConstClass)  
 //  
 // Revision 1.1  2001/02/16 02:06:06  mike  
 // Renamed many classes and headers.  
 //  
 // Revision 1.2  2001/01/15 04:31:43  mike  
 // worked on resolve scheme  
 //  
 // Revision 1.1.1.1  2001/01/14 19:50:39  mike  
 // Pegasus import  
 //  
 //  
 //END_HISTORY  
  
 #ifndef Pegasus_ClassDeclRep_h  #ifndef Pegasus_CIMClassRep_h
 #define Pegasus_ClassDeclRep_h  #define Pegasus_CIMClassRep_h
  
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
 #include <Pegasus/Common/Exception.h> #include <Pegasus/Common/Exception.h>
Line 98 
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 113 
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 124 
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 131 
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 142 
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 149 
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(
Line 157 
Line 161 
  
     void toXml(Array<Sint8>& out) const;     void toXml(Array<Sint8>& out) const;
  
     void print(std::ostream &o=std::cout) const;      void print(PEGASUS_STD(ostream) &o=PEGASUS_STD(cout)) const;
  
     Boolean identical(const CIMClassRep* x) const;     Boolean identical(const CIMClassRep* x) const;
  
Line 192 
Line 196 
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END
  
 #endif /* Pegasus_ClassDeclRep_h */  #endif /* Pegasus_CIMClassRep_h */


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2