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

Diff for /pegasus/src/Pegasus/Common/DirWindows.cpp between version 1.12 and 1.13

version 1.12, 2003/11/18 22:15:45 version 1.13, 2004/05/18 11:03:38
Line 25 
Line 25 
 // //
 // Author: Mike Brasher (mbrasher@bmc.com) // Author: Mike Brasher (mbrasher@bmc.com)
 // //
 // Modified By:  // Modified By: Amit K Arora, IBM (amita@in.ibm.com)
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include "Destroyer.h"  
 #include "Dir.h" #include "Dir.h"
 #include "InternalException.h" #include "InternalException.h"
  
Line 44 
Line 43 
     struct _finddata_t findData;     struct _finddata_t findData;
 }; };
  
 Dir::Dir(const String& path)  Dir::Dir(const String& path) :
          _rep(new DirRep)
 { {
     _rep = new DirRep;  
     _rep->file = _findfirst((path+"/*").getCString(), &_rep->findData);     _rep->file = _findfirst((path+"/*").getCString(), &_rep->findData);
  
     if (_rep->file == -1)     if (_rep->file == -1)
     {     {
         _more = false;         _more = false;
         delete _rep;          //delete _rep;
           _rep.reset();
         throw CannotOpenDirectory(path);         throw CannotOpenDirectory(path);
     }     }
     else     else
Line 64 
Line 64 
     if (_rep->file != -1)     if (_rep->file != -1)
         _findclose(_rep->file);         _findclose(_rep->file);
  
     delete _rep;  
       _rep.reset();
 } }
  
 const char* Dir::getName() const const char* Dir::getName() const


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2