Changeset 19064 for trunk/FACT++/src/WindowLog.h
- Timestamp:
- 07/19/18 18:09:58 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/WindowLog.h
r18868 r19064 6 6 #include <vector> 7 7 #include <fstream> 8 #include <functional> // std::bind 8 9 9 10 #include <ncurses.h> // A_NORMAL etc … … 95 96 } 96 97 WindowLog(WindowLog const& log) : std::ios(), std::streambuf(), std::ostream((std::streambuf*)&log), fWindow(log.fWindow), fIsNull(false), fEnableBacklog(true), 97 fQueueFile( bind(&WindowLog::WriteFile, this, std::placeholders::_1))98 fQueueFile(std::bind(&WindowLog::WriteFile, this, std::placeholders::_1)) 98 99 { 99 100 //fLogFile.rdbuf()->pubsetbuf(0,0); // Switch off buffering
Note:
See TracChangeset
for help on using the changeset viewer.