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

Diff for /pegasus/src/Pegasus/Common/CIMName.cpp between version 1.16 and 1.17

version 1.16, 2002/08/19 17:43:23 version 1.17, 2002/09/13 21:40:42
Line 24 
Line 24 
 // Author: Mike Brasher (mbrasher@bmc.com) // Author: Mike Brasher (mbrasher@bmc.com)
 // //
 // Modified By: Roger Kumpf, Hewlett Packard Company (roger_kumpf@hp.com) // Modified By: Roger Kumpf, Hewlett Packard Company (roger_kumpf@hp.com)
   //              Carol Ann Krug Graves, Hewlett-Packard Company
   //                (carolann_graves@hp.com)
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 69 
Line 71 
  
 CIMName& CIMName::operator=(const CIMName& name) CIMName& CIMName::operator=(const CIMName& name)
 { {
     cimName=name;      cimName=name.cimName;
     return *this;     return *this;
 } }
  
Line 83 
Line 85 
     return *this;     return *this;
 } }
  
   #ifndef PEGASUS_REMOVE_DEPRECATED
 CIMName& CIMName::operator=(const char* name) CIMName& CIMName::operator=(const char* name)
 { {
     cimName=name;     cimName=name;
     return *this;     return *this;
 } }
   #endif
  
 #if 0  const String& CIMName::getString() const
 String CIMName::toString() const  
 { {
     return cimName;     return cimName;
 } }
 #endif  
  
   #ifndef PEGASUS_REMOVE_DEPRECATED
 CIMName::operator String() const CIMName::operator String() const
 { {
     return cimName;     return cimName;
 } }
   #endif
  
 Boolean CIMName::isNull() const Boolean CIMName::isNull() const
 { {
Line 143 
Line 147 
 } }
 #endif #endif
  
 #if 0  
 Boolean operator==(const CIMName& name1, const CIMName& name2) Boolean operator==(const CIMName& name1, const CIMName& name2)
 { {
     return name1.equal(name2);     return name1.equal(name2);
 } }
 #endif  
   
 #if 0  
 PEGASUS_STD(ostream)& operator<<(PEGASUS_STD(ostream)& os, const CIMName& name)  
 {  
     os << name.toString();  
     return os;  
 }  
 #endif  
  
  
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
Line 165 
Line 159 
 // //
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
  
   #define PEGASUS_ARRAY_T CIMNamespaceName
   # include "ArrayImpl.h"
   #undef PEGASUS_ARRAY_T
   
 CIMNamespaceName::CIMNamespaceName() CIMNamespaceName::CIMNamespaceName()
     : cimNamespaceName(String::EMPTY)     : cimNamespaceName(String::EMPTY)
 { {
Line 192 
Line 190 
  
 CIMNamespaceName& CIMNamespaceName::operator=(const CIMNamespaceName& name) CIMNamespaceName& CIMNamespaceName::operator=(const CIMNamespaceName& name)
 { {
     cimNamespaceName=name;      cimNamespaceName=name.cimNamespaceName;
     return *this;     return *this;
 } }
  
Line 206 
Line 204 
     return *this;     return *this;
 } }
  
   #ifndef PEGASUS_REMOVE_DEPRECATED
 CIMNamespaceName& CIMNamespaceName::operator=(const char* name) CIMNamespaceName& CIMNamespaceName::operator=(const char* name)
 { {
     cimNamespaceName=name;     cimNamespaceName=name;
     return *this;     return *this;
 } }
   #endif
  
 #if 0  const String& CIMNamespaceName::getString() const
 String CIMNamespaceName::toString() const  
 { {
     return cimNamespaceName;     return cimNamespaceName;
 } }
 #endif  
  
   #ifndef PEGASUS_REMOVE_DEPRECATED
 CIMNamespaceName::operator String() const CIMNamespaceName::operator String() const
 { {
     return cimNamespaceName;     return cimNamespaceName;
 } }
   #endif
  
 Boolean CIMNamespaceName::isNull() const Boolean CIMNamespaceName::isNull() const
 { {
Line 305 
Line 305 
 } }
 #endif #endif
  
   Boolean operator==(const CIMNamespaceName& name1, const CIMNamespaceName& name2)
   {
       return name1.equal(name2);
   }
   
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2