Changeset 3060 for trunk/yat/utility/Queue.h
- Timestamp:
- Jul 2, 2013, 2:04:54 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/utility/Queue.h
r3058 r3060 48 48 { 49 49 public: 50 /// Type of object stored in Queue 51 typedef T value_type; 52 53 /** 54 An unsigned integral type. \see size(void) 55 */ 56 typedef typename std::deque<T>::size_type size_type; 57 50 58 /** 51 59 \return \c true if container's size is zero … … 97 105 \return Number of elements stored in container 98 106 */ 99 size_t size(void) const107 size_type size(void) const 100 108 { 101 109 boost::unique_lock<boost::mutex> lock(mutex_);
Note: See TracChangeset
for help on using the changeset viewer.