os-70-350

os-70-350 Commit Details


Date:2013-11-24 22:17:31 (11 years 9 months ago)
Author:Natalie Adams
Branch:master
Commit:13dac6cafbedbadbeb6342f4439164ee211e1e06
Parents: f6324e22160ae2c2d4b3960970a6c5157edfbcbb
Message:Updating Linux version

Changes:

File differences

cp-Linux/main.cpp
1818
1919
2020
21
21
2222
2323
2424
int _handle;
public:
FileWrapper(const char * file, int flags) { this->_handle = open(file, flags); }
FileWrapper(const char * file, int flags, mode_t mode = 0700) { this->_handle = open(file, flags, mode); }
~FileWrapper() { close(this->_handle); }
int getHandle() { return this->_handle; }
};

Archive Download the corresponding diff file

Branches

Number of commits:
Page rendered in 0.28830s using 14 queries.