Changeset 3061 for trunk/yat/utility/Queue.h
- Timestamp:
- Jul 2, 2013, 4:05:46 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/utility/Queue.h
r3060 r3061 41 41 there is no point in using the class as std::queue should be 42 42 prefereble. 43 44 \note Copy constructor and assignment are available but they are 45 not thread safe in the current implementation. 43 46 44 47 \since New in yat 0.11 … … 130 133 mutable boost::mutex mutex_; 131 134 boost::condition_variable condition_; 135 136 // Using compiler generated (not thread safe) copy and assignment 137 //Queue(const Queue&); 138 //Queue& operator=(const Queue&); 132 139 }; 133 140
Note: See TracChangeset
for help on using the changeset viewer.