(file) Return to CIMObjectRep.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/CIMObjectRep.h between version 1.9 and 1.19

version 1.9, 2002/05/02 18:23:45 version 1.19, 2002/07/30 16:14:53
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_CIMObjectRep_h #define Pegasus_CIMObjectRep_h
  
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
   #include <Pegasus/Common/Linkage.h>
 #include <Pegasus/Common/String.h> #include <Pegasus/Common/String.h>
   #include <Pegasus/Common/Sharable.h>
   #include <Pegasus/Common/CIMName.h>
 #include <Pegasus/Common/CIMProperty.h> #include <Pegasus/Common/CIMProperty.h>
 #include <Pegasus/Common/CIMQualifier.h> #include <Pegasus/Common/CIMQualifier.h>
 #include <Pegasus/Common/CIMQualifierList.h> #include <Pegasus/Common/CIMQualifierList.h>
Line 49 
Line 54 
 { {
 public: public:
  
     CIMObjectRep(const CIMReference& className);      CIMObjectRep(const CIMObjectPath& className);
  
     virtual ~CIMObjectRep();     virtual ~CIMObjectRep();
  
     const String& getClassName() const      const CIMName& getClassName() const
     {     {
         return _reference.getClassName();         return _reference.getClassName();
     }     }
  
     const Boolean equalClassName(const String& classname) const      const CIMObjectPath& getPath() const
     {  
         return (String::equalNoCase(classname, _reference.getClassName()));  
     }  
   
     const CIMReference& getPath() const  
     {     {
         return _reference;         return _reference;
     }     }
  
       /**
         Sets the object path for the object
         @param  path  CIMObjectPath containing the object path
        */
       void setPath (const CIMObjectPath & path);
   
     void addQualifier(const CIMQualifier& qualifier)     void addQualifier(const CIMQualifier& qualifier)
     {     {
         _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);
     }     }
  
     Boolean existsQualifier(const String& name) const  
     {  
         return ((_qualifiers.find(name) != PEG_NOT_FOUND) ? true : false);  
     }  
   
     CIMQualifier getQualifier(Uint32 pos)     CIMQualifier getQualifier(Uint32 pos)
     {     {
         return _qualifiers.getQualifier(pos);         return _qualifiers.getQualifier(pos);
Line 93 
Line 94 
         return _qualifiers.getQualifier(pos);         return _qualifiers.getQualifier(pos);
     }     }
  
     Boolean isTrueQualifer(String& name) const      Boolean isTrueQualifer(CIMName& name) const
     {     {
         return _qualifiers.isTrue(name);         return _qualifiers.isTrue(name);
     }     }
Line 110 
Line 111 
  
     virtual void addProperty(const CIMProperty& x);     virtual void addProperty(const CIMProperty& x);
  
     Uint32 findProperty(const String& name) const;      Uint32 findProperty(const CIMName& name) const;
   
     Boolean existsProperty(const String& name) const;  
  
     CIMProperty getProperty(Uint32 pos);     CIMProperty getProperty(Uint32 pos);
  
Line 129 
Line 128 
  
     virtual void toXml(Array<Sint8>& out) const = 0;     virtual void toXml(Array<Sint8>& out) const = 0;
  
     virtual void print(PEGASUS_STD(ostream)& os = PEGASUS_STD(cout)) const = 0;  
   
     virtual CIMObjectRep* clone() const = 0;     virtual CIMObjectRep* clone() const = 0;
  
 protected: protected:
Line 139 
Line 136 
  
     CIMObjectRep(const CIMObjectRep& x);     CIMObjectRep(const CIMObjectRep& x);
  
     CIMReference _reference;      CIMObjectPath _reference;
     CIMQualifierList _qualifiers;     CIMQualifierList _qualifiers;
     Array<CIMProperty> _properties;     Array<CIMProperty> _properties;
     Boolean _resolved;     Boolean _resolved;
Line 150 
Line 147 
     // not implicitly define a default copy constructor.     // not implicitly define a default copy constructor.
     CIMObjectRep& operator=(const CIMObjectRep& x)     CIMObjectRep& operator=(const CIMObjectRep& x)
     {     {
         PEGASUS_ASSERT(0);          //PEGASUS_ASSERT(0);
         return *this;         return *this;
     }     }
  


Legend:
Removed from v.1.9  
changed lines
  Added in v.1.19

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2