(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.10 and 1.16

version 1.10, 2002/05/07 00:41:34 version 1.16, 2002/06/01 00:56:26
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 50 
Line 52 
 { {
 public: public:
  
     CIMObjectRep(const CIMReference& className);      CIMObjectRep(const CIMObjectPath& className);
  
     virtual ~CIMObjectRep();     virtual ~CIMObjectRep();
  
Line 59 
Line 61 
         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);
Line 130 
Line 133 
  
     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 140 
Line 141 
  
     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 151 
Line 152 
     // 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.10  
changed lines
  Added in v.1.16

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2