(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.12 and 1.30

version 1.12, 2002/05/15 23:14:19 version 1.30, 2006/11/07 21:30:36
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%2006////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001 The Open group, BMC Software, Tivoli Systems, IBM  // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
   // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
   // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation, The Open Group.
   // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
   // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; VERITAS Software Corporation; The Open Group.
   // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; Symantec Corporation; The Open Group.
 // //
 // 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 20 
Line 29 
 // //
 //============================================================================== //==============================================================================
 // //
 // Author: Mike Brasher (mbrasher@bmc.com)  
 //  
 // Modified By:  
 //  
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #ifndef Pegasus_CIMObjectRep_h #ifndef Pegasus_CIMObjectRep_h
 #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/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 46 
Line 53 
  
     This class contains what is common to CIMClass and CIMInstance.     This class contains what is common to CIMClass and CIMInstance.
 */ */
 class PEGASUS_COMMON_LINKAGE CIMObjectRep : public Sharable  class CIMObjectRep : public Sharable
 { {
 public: public:
  
Line 54 
Line 61 
  
     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  
     {  
         return (String::equalNoCase(classname, _reference.getClassName()));  
     }  
   
     const CIMObjectPath& getPath() const     const CIMObjectPath& 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      CIMQualifier getQualifier(Uint32 index)
     {  
         return ((_qualifiers.find(name) != PEG_NOT_FOUND) ? true : false);  
     }  
   
     CIMQualifier getQualifier(Uint32 pos)  
     {     {
         return _qualifiers.getQualifier(pos);          return _qualifiers.getQualifier(index);
     }     }
  
     CIMConstQualifier getQualifier(Uint32 pos) const      CIMConstQualifier getQualifier(Uint32 index) const
     {     {
         return _qualifiers.getQualifier(pos);          return _qualifiers.getQualifier(index);
     }     }
  
     Boolean isTrueQualifer(String& name) const      Boolean isTrueQualifer(CIMName& name) const
     {     {
         return _qualifiers.isTrue(name);         return _qualifiers.isTrue(name);
     }     }
Line 104 
Line 107 
         return _qualifiers.getCount();         return _qualifiers.getCount();
     }     }
  
     void removeQualifier(Uint32 pos)      void removeQualifier(Uint32 index)
     {     {
         _qualifiers.removeQualifier(pos);          _qualifiers.removeQualifier(index);
     }     }
  
     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 index);
  
     CIMConstProperty getProperty(Uint32 pos) const      CIMConstProperty getProperty(Uint32 index) const
     {     {
         return ((CIMObjectRep*)this)->getProperty(pos);          return ((CIMObjectRep*)this)->getProperty(index);
     }     }
  
     void removeProperty(Uint32 pos);      void removeProperty(Uint32 index);
  
     Uint32 getPropertyCount() const;     Uint32 getPropertyCount() const;
  
     virtual Boolean identical(const CIMObjectRep* x) const;     virtual Boolean identical(const CIMObjectRep* x) const;
  
     virtual void toXml(Array<Sint8>& out) const = 0;      virtual void toXml(Buffer& out) const = 0;
   
       virtual void toMof(Buffer& out) const = 0;
  
     virtual CIMObjectRep* clone() const = 0;     virtual CIMObjectRep* clone() const = 0;
  
Line 149 
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;
     }     }
  
     friend class CIMObject;     friend class CIMObject;
       friend class BinaryStreamer;
 }; };
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.12  
changed lines
  Added in v.1.30

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2