summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/sample_and_hold_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/sample_and_hold_impl.h
parent78431dc6941e3acc67c858277dfe4a0ed583643c (diff)
Tree: clang-format without the include sorting
Diffstat (limited to 'gr-blocks/lib/sample_and_hold_impl.h')
-rw-r--r--gr-blocks/lib/sample_and_hold_impl.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/gr-blocks/lib/sample_and_hold_impl.h b/gr-blocks/lib/sample_and_hold_impl.h
index f2ba032073..a264663422 100644
--- a/gr-blocks/lib/sample_and_hold_impl.h
+++ b/gr-blocks/lib/sample_and_hold_impl.h
@@ -27,24 +27,24 @@
#include <gnuradio/blocks/sample_and_hold.h>
namespace gr {
- namespace blocks {
+namespace blocks {
-template<class T>
- class sample_and_hold_impl : public sample_and_hold<T>
- {
- private:
- T d_data;
+template <class T>
+class sample_and_hold_impl : public sample_and_hold<T>
+{
+private:
+ T d_data;
- public:
- sample_and_hold_impl ();
- ~sample_and_hold_impl ();
+public:
+ sample_and_hold_impl();
+ ~sample_and_hold_impl();
- 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 /* SAMPLE_AND_HOLD_IMPL_H */