Changeset 10441 for code/branches/cpp11/src/libraries
- Timestamp:
- May 10, 2015, 11:00:01 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11/src/libraries/core/config/ConfigFile.cc
r9559 r10441 35 35 36 36 #include <boost/filesystem.hpp> 37 38 #include <iterator> 39 #include <algorithm> 37 40 38 41 #include "util/Convert.h" … … 93 96 try 94 97 { 95 boost::filesystem::copy_file(defaultFilepath, filepath); 98 std::ifstream input(defaultFilepath.string().c_str(), std::ifstream::in | std::ifstream::binary); 99 std::ofstream output(filepath.string().c_str(), std::ofstream::out | std::ofstream::binary); 100 copy(std::istreambuf_iterator<char>(input), std::istreambuf_iterator<char>(), std::ostream_iterator<char>(output)); 96 101 orxout(internal_info, context::config) << "Copied " << this->filename_ << " from the default config folder." << endl; 97 102 }
Note: See TracChangeset
for help on using the changeset viewer.