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

Diff for /pegasus/src/Pegasus/Common/System.cpp between version 1.3 and 1.14.2.1

version 1.3, 2001/06/16 17:30:38 version 1.14.2.1, 2002/10/25 20:49:43
Line 1 
Line 1 
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001 The Open group, BMC Software, Tivoli Systems, IBM  // Copyright (c) 2000, 2001, 2002 BMC Software, Hewlett-Packard Company, IBM,
   // The Open Group, Tivoli Systems
 // //
 // 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 22 
Line 23 
 // //
 // Author: Mike Brasher (mbrasher@bmc.com) // Author: Mike Brasher (mbrasher@bmc.com)
 // //
 // Modified By:  // Modified By: Rudy Schuet (rudy.schuet@compaq.com) 11/12/01
   //                                      added nsk platform support
   //                              Ramnath Ravindran (Ramnath.Ravindran@compaq.com) 03/21/2002
   //                                      replaced instances of "| ios::binary" with
   //                                      PEGASUS_OR_IOS_BINARY
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
   
   #include <fstream>
 #include "System.h" #include "System.h"
  
   #include <Pegasus/Common/PegasusVersion.h>
   
 #if defined(PEGASUS_OS_TYPE_WINDOWS) #if defined(PEGASUS_OS_TYPE_WINDOWS)
 # include "SystemWindows.cpp" # include "SystemWindows.cpp"
 #elif defined(PEGASUS_OS_TYPE_UNIX) #elif defined(PEGASUS_OS_TYPE_UNIX)
 # include "SystemUnix.cpp" # include "SystemUnix.cpp"
   #elif defined(PEGASUS_OS_TYPE_NSK)
   # include "SystemNsk.cpp"
 #else #else
 # error "Unsupported platform" # error "Unsupported platform"
 #endif #endif
   
   PEGASUS_USING_STD;
   
   PEGASUS_NAMESPACE_BEGIN
   
   Boolean System::copyFile(const char* fromPath, const char* toPath)
   {
       ifstream is(fromPath PEGASUS_IOS_BINARY);
       ofstream os(toPath PEGASUS_IOS_BINARY);
   
       char c;
   
       while (is.get(c))
       {
           if (!os.put(c))
               return false;
       }
   
       return true;
   }
   
   
   PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.3  
changed lines
  Added in v.1.14.2.1

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2