Changeset 17229 for trunk/FACT++
- Timestamp:
- 10/16/13 21:02:33 (11 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/WindowLog.cc
r16881 r17229 137 137 } 138 138 139 voidWindowLog::WriteFile(const string &sout)139 bool WindowLog::WriteFile(const string &sout) 140 140 { 141 141 fMuxFile.lock(); … … 143 143 fLogFile.flush(); 144 144 fMuxFile.unlock(); 145 146 return true; 145 147 } 146 148 -
trunk/FACT++/src/WindowLog.h
r16832 r17229 9 9 #include <ncurses.h> // A_NORMAL etc 10 10 11 #include " queue.h"11 #include "../externals/Queue.h" 12 12 13 13 /// Stream manipulators to change the color of a WindowLog stream … … 83 83 void AddColor(int m); 84 84 85 voidWriteFile(const std::string &);85 bool WriteFile(const std::string &); 86 86 void WriteBuffer(); 87 87
Note:
See TracChangeset
for help on using the changeset viewer.