summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/ctrlport_probe_c_impl.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 /gr-blocks/lib/ctrlport_probe_c_impl.h
parent78431dc6941e3acc67c858277dfe4a0ed583643c (diff)
Tree: clang-format without the include sorting
Diffstat (limited to 'gr-blocks/lib/ctrlport_probe_c_impl.h')
-rw-r--r--gr-blocks/lib/ctrlport_probe_c_impl.h39
1 files changed, 19 insertions, 20 deletions
diff --git a/gr-blocks/lib/ctrlport_probe_c_impl.h b/gr-blocks/lib/ctrlport_probe_c_impl.h
index 59e9497a82..4170e24929 100644
--- a/gr-blocks/lib/ctrlport_probe_c_impl.h
+++ b/gr-blocks/lib/ctrlport_probe_c_impl.h
@@ -28,33 +28,32 @@
#include <boost/thread/shared_mutex.hpp>
namespace gr {
- namespace blocks {
+namespace blocks {
- class ctrlport_probe_c_impl : public ctrlport_probe_c
- {
- private:
- boost::shared_mutex ptrlock;
+class ctrlport_probe_c_impl : public ctrlport_probe_c
+{
+private:
+ boost::shared_mutex ptrlock;
- std::string d_id;
- std::string d_desc;
- const gr_complex* d_ptr;
- size_t d_ptrLen;
+ std::string d_id;
+ std::string d_desc;
+ const gr_complex* d_ptr;
+ size_t d_ptrLen;
- public:
- ctrlport_probe_c_impl(const std::string &id, const std::string &desc);
- ~ctrlport_probe_c_impl();
+public:
+ ctrlport_probe_c_impl(const std::string& id, const std::string& desc);
+ ~ctrlport_probe_c_impl();
- void setup_rpc();
+ void setup_rpc();
- std::vector<gr_complex> get();
+ std::vector<gr_complex> get();
- int work(int noutput_items,
- gr_vector_const_void_star &input_items,
- gr_vector_void_star &output_items);
- };
+ int work(int noutput_items,
+ gr_vector_const_void_star& input_items,
+ gr_vector_void_star& output_items);
+};
- } /* namespace blocks */
+} /* namespace blocks */
} /* namespace gr */
#endif /* INCLUDED_CTRLPORT_GR_CTRLPORT_PROBE_C_IMPL_H */
-