]> git.lyx.org Git - lyx.git/blobdiff - src/support/copy.C
remove NO_PEXTRA_STUFF
[lyx.git] / src / support / copy.C
index e9061065dce7aebba0c1bf765c72d22f3d14cb90..b89f2159494aa836f937e62e6292c69778ed059e 100644 (file)
@@ -5,14 +5,21 @@
 #include "support/lyxlib.h"
 #include "LString.h"
 
+using std::ifstream;
+using std::ofstream;
+using std::ios;
+
 bool lyx::copy(string const & from, string const & to)
 {
-       std::ifstream ifs(from.c_str());
-       if (!ifs) return false;
-       std::ofstream ofs(to.c_str(),
-                         std::ios::binary | std::ios::out | std::ios::trunc);
-       if (!ofs) return false;
+       ifstream ifs(from.c_str());
+       if (!ifs)
+               return false;
+       ofstream ofs(to.c_str(),
+                    ios::binary | ios::out | ios::trunc);
+       if (!ofs)
+               return false;
        ofs << ifs.rdbuf();
-       if (ofs.good()) return true;
+       if (ofs.good())
+               return true;
        return false;
 }