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

Diff for /pegasus/src/Pegasus/ProviderManager2/ProviderName.cpp between version 1.11 and 1.12

version 1.11, 2006/01/30 16:18:01 version 1.12, 2006/11/14 18:34:56
Line 29 
Line 29 
 // //
 //============================================================================== //==============================================================================
 // //
 // Author: Chip Vincent (cvincent@us.ibm.com)  
 //  
 // Modified By: Adrian Schuur (schuur@de.ibm.com)  
 //  
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include "ProviderName.h" #include "ProviderName.h"
Line 41 
Line 37 
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 ProviderName::ProviderName(void) : _capabilities(0)  ProviderName::ProviderName() : _capabilities(0)
 { {
 } }
  
Line 82 
Line 78 
     _method = method;     _method = method;
 } }
  
 ProviderName::~ProviderName(void)  ProviderName::~ProviderName()
 { {
 } }
  
 String ProviderName::getPhysicalName(void) const  String ProviderName::getPhysicalName() const
 { {
     return(_physicalName);      return _physicalName;
 } }
  
 void ProviderName::setPhysicalName(const String & physicalName) void ProviderName::setPhysicalName(const String & physicalName)
Line 96 
Line 92 
     _physicalName = physicalName;     _physicalName = physicalName;
 } }
  
 String ProviderName::getLogicalName(void) const  String ProviderName::getLogicalName() const
 { {
     return(_logicalName);      return _logicalName;
 } }
  
 String ProviderName::getInterfaceName(void) const  String ProviderName::getInterfaceName() const
 { {
     return(_interfaceName);      return _interfaceName;
 } }
  
 String ProviderName::getLocation(void) const  String ProviderName::getLocation() const
 { {
     return(_location);      return _location;
 } }
  
 void ProviderName::setLocation(const String &location) void ProviderName::setLocation(const String &location)
Line 116 
Line 112 
     _location=location;     _location=location;
 } }
  
 Uint32 ProviderName::getCapabilitiesMask(void) const  Uint32 ProviderName::getCapabilitiesMask() const
 { {
     return(_capabilities);      return _capabilities;
 } }
  
 CIMName ProviderName::getMethodName(void) const  CIMName ProviderName::getMethodName() const
 { {
     return(_method);      return _method;
 } }
  
 CIMName ProviderName::getClassName() const {  CIMName ProviderName::getClassName() const
   {
    return _className;    return _className;
 } }
  
 CIMNamespaceName ProviderName::getNameSpace() const {  CIMNamespaceName ProviderName::getNameSpace() const
   {
    return _nameSpace;    return _nameSpace;
 } }
  


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2