summaryrefslogtreecommitdiff
path: root/bindings/cpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@fastmq.commkdir>2009-09-22 10:57:46 +0200
committerMartin Sustrik <sustrik@fastmq.commkdir>2009-09-22 10:57:46 +0200
commitcc8136896d30890efb24aadc2d3058652aa43d45 (patch)
tree6a57cd857aaa201455032ac7fb3c8777665e7b50 /bindings/cpp
parente6ca5da1815023e90306914dab101eeef4b6f199 (diff)
documentation in zmq.h improved
Diffstat (limited to 'bindings/cpp')
-rw-r--r--bindings/cpp/zmq.hpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/bindings/cpp/zmq.hpp b/bindings/cpp/zmq.hpp
index a9e63b5..cf7d347 100644
--- a/bindings/cpp/zmq.hpp
+++ b/bindings/cpp/zmq.hpp
@@ -32,13 +32,6 @@ namespace zmq
typedef zmq_free_fn free_fn;
- enum message_type_t
- {
- message_data = 1 << 0,
- message_gap = 1 << ZMQ_GAP,
- message_delimiter = 1 << ZMQ_DELIMITER
- };
-
// The class masquerades POSIX-style errno error as a C++ exception.
class error_t : public std::exception
{
@@ -148,12 +141,6 @@ namespace zmq
throw error_t ();
}
- // Returns message type.
- inline message_type_t type ()
- {
- return (message_type_t) (1 << zmq_msg_type (this));
- }
-
// Returns pointer to message's data buffer.
inline void *data ()
{