summaryrefslogtreecommitdiffstats
path: root/src/dabInputZmq.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2014-04-17 20:19:56 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2014-04-17 20:19:56 +0200
commit5f9e7bc673025ffdc953d254be0d0c65c70ee908 (patch)
tree05c023814851e2135e22a98c676115d67334f664 /src/dabInputZmq.h
parentdd428769ba5587e913cb2d768e2bca4b70f98c5d (diff)
downloaddabmux-5f9e7bc673025ffdc953d254be0d0c65c70ee908.tar.gz
dabmux-5f9e7bc673025ffdc953d254be0d0c65c70ee908.tar.bz2
dabmux-5f9e7bc673025ffdc953d254be0d0c65c70ee908.zip
Remove using directives from .h files
Diffstat (limited to 'src/dabInputZmq.h')
-rw-r--r--src/dabInputZmq.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/dabInputZmq.h b/src/dabInputZmq.h
index a052815..f41defa 100644
--- a/src/dabInputZmq.h
+++ b/src/dabInputZmq.h
@@ -3,7 +3,7 @@
Research Center Canada)
Copyright (C) 2013, 2014 Matthias P. Braendli
- http://mpb.li
+ http://www.opendigitalradio.org
ZeroMQ input. see www.zeromq.org for more info
@@ -11,6 +11,8 @@
For the MPEG input, each zeromq message must contain one frame.
+ Encryption is provided by zmq_curve, see the corresponding manpage.
+
From the ZeroMQ manpage 'zmq':
The 0MQ lightweight messaging kernel is a library which extends the standard
@@ -94,11 +96,11 @@ class DabInputZmqBase : public DabInputBase, public RemoteControllable {
virtual int close();
/* Remote control */
- virtual void set_parameter(const string& parameter,
- const string& value);
+ virtual void set_parameter(const std::string& parameter,
+ const std::string& value);
/* Getting a parameter always returns a string. */
- virtual const string get_parameter(const string& parameter) const;
+ virtual const std::string get_parameter(const std::string& parameter) const;
protected:
virtual int readFromSocket(size_t framesize) = 0;