aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2007-09-24 00:42:58 +0000
committerMike Buland <eichlan@xagasoft.com>2007-09-24 00:42:58 +0000
commit8ba5471111da19b10ea38bf3ef00ee9a31cceec3 (patch)
treeddf3a31e960d76d532b178d402b62aca6c0a5e7f
parent5c6b45de0961b050ebca740a607c86bf45251789 (diff)
downloadlibbu++-8ba5471111da19b10ea38bf3ef00ee9a31cceec3.tar.gz
libbu++-8ba5471111da19b10ea38bf3ef00ee9a31cceec3.tar.bz2
libbu++-8ba5471111da19b10ea38bf3ef00ee9a31cceec3.tar.xz
libbu++-8ba5471111da19b10ea38bf3ef00ee9a31cceec3.zip
Really just changed some of the docs, they were wrapping, I hate that.
-rw-r--r--src/itoqueue.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/itoqueue.h b/src/itoqueue.h
index 75a2f27..5945344 100644
--- a/src/itoqueue.h
+++ b/src/itoqueue.h
@@ -9,12 +9,12 @@
9namespace Bu 9namespace Bu
10{ 10{
11 /** 11 /**
12 * A thread-safe queue class. This class is a very simple queue with some cool 12 * A thread-safe queue class. This class is a very simple queue with some
13 * extra functionality for use with the Ito system. The main extra that it 13 * cool extra functionality for use with the Ito system. The main extra
14 * provides is the option to either dequeue without blocking, with infinite 14 * that it provides is the option to either dequeue without blocking, with
15 * blocking, or with timed blocking, which will return a value if something is 15 * infinite blocking, or with timed blocking, which will return a value if
16 * enqueued within the specified time limit, or NULL if the time limit is 16 * something is enqueued within the specified time limit, or NULL if the
17 * exceded. 17 * time limit is exceded.
18 *@author Mike Buland 18 *@author Mike Buland
19 */ 19 */
20 template <class T> 20 template <class T>