summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/include/gnuradio/msg_handler.h
diff options
context:
space:
mode:
authorMarcus Müller <mmueller@gnuradio.org>2019-08-07 21:45:12 +0200
committerMarcus Müller <marcus@hostalia.de>2019-08-09 23:04:28 +0200
commitf7bbf2c1d8d780294f3e016aff239ca35eb6516e (patch)
treee09ab6112e02b2215b2d59ac24d3d6ea2edac745 /gnuradio-runtime/include/gnuradio/msg_handler.h
parent78431dc6941e3acc67c858277dfe4a0ed583643c (diff)
Tree: clang-format without the include sorting
Diffstat (limited to 'gnuradio-runtime/include/gnuradio/msg_handler.h')
-rw-r--r--gnuradio-runtime/include/gnuradio/msg_handler.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/gnuradio-runtime/include/gnuradio/msg_handler.h b/gnuradio-runtime/include/gnuradio/msg_handler.h
index b37f215616..cb4c60029d 100644
--- a/gnuradio-runtime/include/gnuradio/msg_handler.h
+++ b/gnuradio-runtime/include/gnuradio/msg_handler.h
@@ -28,21 +28,21 @@
namespace gr {
- class msg_handler;
- typedef boost::shared_ptr<msg_handler> msg_handler_sptr;
-
- /*!
- * \brief abstract class of message handlers
- * \ingroup base
- */
- class GR_RUNTIME_API msg_handler
- {
- public:
+class msg_handler;
+typedef boost::shared_ptr<msg_handler> msg_handler_sptr;
+
+/*!
+ * \brief abstract class of message handlers
+ * \ingroup base
+ */
+class GR_RUNTIME_API msg_handler
+{
+public:
virtual ~msg_handler();
//! handle \p msg
virtual void handle(message::sptr msg) = 0;
- };
+};
} /* namespace gr */