Changeset 6e2f3b for src/CodePatterns
- Timestamp:
- Oct 30, 2015, 11:43:20 AM (10 years ago)
- Children:
- 3681dd
- Parents:
- dd7c44
- git-author:
- Frederik Heber <heber@…> (08/04/15 19:57:52)
- git-committer:
- Frederik Heber <heber@…> (10/30/15 11:43:20)
- File:
-
- 1 edited
-
src/CodePatterns/Observer/ObserverLog.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/CodePatterns/Observer/ObserverLog.hpp
rdd7c44 r6e2f3b 15 15 16 16 #include <boost/shared_ptr.hpp> 17 #include <boost/thread/recursive_mutex.hpp> 17 18 #include <map> 18 19 #include <set> … … 70 71 static std::ostream *nullstream; // stream that is not displayed 71 72 static std::ostream *outstream; // stream that is currently used 73 74 //!> mutex to ensure access is only per-thread 75 mutable boost::recursive_mutex mutex; 72 76 }; 73 77
Note:
See TracChangeset
for help on using the changeset viewer.
