FACT++  1.0
bool WindowLog::WriteFile ( const std::string &  sout)
private

Definition at line 139 of file WindowLog.cc.

140 {
141  fMuxFile.lock();
142  fLogFile << sout;
143  fLogFile.flush();
144  fMuxFile.unlock();
145 
146  return true;
147 }
std::mutex fMuxFile
Mutex securing backlog access.
Definition: WindowLog.h:74
std::ofstream fLogFile
Storage for attributes (backlog)
Definition: WindowLog.h:68