summaryrefslogtreecommitdiff
path: root/src/xpub.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2011-07-24 17:50:05 +0200
committerMartin Sustrik <sustrik@250bpm.com>2011-07-24 17:50:05 +0200
commit837451eddc4386e19f52db89be7ae38aae471df0 (patch)
tree941671bedc0d1ccdff4bcf3d3087d8a78994229b /src/xpub.hpp
parent5650743d9edc8b8e85739ab023e8156b451003f1 (diff)
Remove blob_t class
The class was used in a single place. Replaced by a local typedef. Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/xpub.hpp')
-rw-r--r--src/xpub.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xpub.hpp b/src/xpub.hpp
index 320a1fe..001fa2d 100644
--- a/src/xpub.hpp
+++ b/src/xpub.hpp
@@ -22,11 +22,11 @@
#define __ZMQ_XPUB_HPP_INCLUDED__
#include <deque>
+#include <string>
#include "socket_base.hpp"
#include "mtrie.hpp"
#include "array.hpp"
-#include "blob.hpp"
#include "dist.hpp"
namespace zmq
@@ -71,6 +71,7 @@ namespace zmq
// List of pending (un)subscriptions, ie. those that were already
// applied to the trie, but not yet received by the user.
+ typedef std::basic_string <unsigned char> blob_t;
typedef std::deque <blob_t> pending_t;
pending_t pending;