aboutsummaryrefslogtreecommitdiff
path: root/src/itocounter.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-10-23 07:43:50 +0000
committerMike Buland <eichlan@xagasoft.com>2011-10-23 07:43:50 +0000
commitda1e0ef0772b078bd295301bd675afdee00d40e9 (patch)
tree7d1703bbb5c2d76e6e6300e51f0ed1e09704af4f /src/itocounter.h
parent208b983734d7431699f4bd3534e08321e42ada86 (diff)
downloadlibbu++-da1e0ef0772b078bd295301bd675afdee00d40e9.tar.gz
libbu++-da1e0ef0772b078bd295301bd675afdee00d40e9.tar.bz2
libbu++-da1e0ef0772b078bd295301bd675afdee00d40e9.tar.xz
libbu++-da1e0ef0772b078bd295301bd675afdee00d40e9.zip
Switched ito* to synchro*, except the server, I'm thinking of takeing the core
in a different direction anyway. Added the Deflate class, it uses zlib, and can do raw (headerless) deflate streams, zlib format, or gzip format. It's easy to use and quite versitile.
Diffstat (limited to 'src/itocounter.h')
-rw-r--r--src/itocounter.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/itocounter.h b/src/itocounter.h
deleted file mode 100644
index 10126a5..0000000
--- a/src/itocounter.h
+++ /dev/null
@@ -1,49 +0,0 @@
1/*
2 * Copyright (C) 2007-2011 Xagasoft, All rights reserved.
3 *
4 * This file is part of the libbu++ library and is released under the
5 * terms of the license contained in the file LICENSE.
6 */
7
8#ifndef BU_ITO_COUNTER_H
9#define BU_ITO_COUNTER_H
10
11#include "mutex.h"
12
13namespace Bu
14{
15 /**
16 * A simple thread-safe counter class. This is handy for assigning unique
17 * IDs to objects that are being created in different threads.
18 *@ingroup Threading Containers
19 */
20 template <class T>
21 class ItoCounter
22 {
23 public:
24 ItoCounter() :
25 tCounter( 0 )
26 {
27 }
28
29 virtual ~ItoCounter()
30 {
31 }
32
33 T next()
34 {
35 mOperate.lock();
36 T tRet = tCounter;
37 tCounter++;
38 mOperate.unlock();
39
40 return tRet;
41 }
42
43 private:
44 T tCounter; /**< The counter itself. */
45 Mutex mOperate; /**< The master mutex, used on all operations. */
46 };
47}
48
49#endif