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

Diff for /pegasus/src/Pegasus/Common/OperationContextInternal.cpp between version 1.6 and 1.7

version 1.6, 2004/10/17 20:39:17 version 1.7, 2004/11/14 01:33:14
Line 62 
Line 62 
 { {
 } }
  
   LocaleContainer &LocaleContainer::operator=(const LocaleContainer &container)
   {
           if (this == &container)
           {
                   return (*this);
           }
   
           _languageId = container._languageId;
           return (*this);
   }
   
 String LocaleContainer::getName(void) const String LocaleContainer::getName(void) const
 { {
     return(NAME);     return(NAME);
Line 113 
Line 124 
 { {
 } }
  
   ProviderIdContainer & ProviderIdContainer::operator=(
       const ProviderIdContainer & container)
   {
   memcpy((void*)this, (void *)&container
       if (this == &container)
       {
           return (*this);
       }
   
       _module = container._module;
       _provider = container._provider;
       _remoteNameSpace = container._remoteNameSpace;
       _remoteInfo = container._remoteInfo;
   
       return (*this);
   }
   
 String ProviderIdContainer::getName(void) const String ProviderIdContainer::getName(void) const
 { {
     return(NAME);     return(NAME);


Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2