Changeset 2750 for code/branches/network/src/core/ConfigFileManager.cc
- Timestamp:
- Mar 5, 2009, 2:58:42 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/network/src/core/ConfigFileManager.cc
r2731 r2750 241 241 // Open the file 242 242 std::ifstream file; 243 file.open(filepath. file_string().c_str(), std::fstream::in);243 file.open(filepath.string().c_str(), std::fstream::in); 244 244 if (file.is_open()) 245 245 { … … 347 347 348 348 std::ofstream file; 349 file.open(filepath. file_string().c_str(), std::fstream::out);349 file.open(filepath.string().c_str(), std::fstream::out); 350 350 file.setf(std::ios::fixed, std::ios::floatfield); 351 351 file.precision(6);
Note: See TracChangeset
for help on using the changeset viewer.