diff options
author | Marcus Müller <mmueller@gnuradio.org> | 2019-08-07 21:45:12 +0200 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2019-08-09 23:04:28 +0200 |
commit | f7bbf2c1d8d780294f3e016aff239ca35eb6516e (patch) | |
tree | e09ab6112e02b2215b2d59ac24d3d6ea2edac745 /gr-blocks/lib/regenerate_bb_impl.h | |
parent | 78431dc6941e3acc67c858277dfe4a0ed583643c (diff) |
Tree: clang-format without the include sorting
Diffstat (limited to 'gr-blocks/lib/regenerate_bb_impl.h')
-rw-r--r-- | gr-blocks/lib/regenerate_bb_impl.h | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/gr-blocks/lib/regenerate_bb_impl.h b/gr-blocks/lib/regenerate_bb_impl.h index 5cb7f573e7..84b8b78f78 100644 --- a/gr-blocks/lib/regenerate_bb_impl.h +++ b/gr-blocks/lib/regenerate_bb_impl.h @@ -26,32 +26,32 @@ #include <gnuradio/blocks/regenerate_bb.h> namespace gr { - namespace blocks { +namespace blocks { - class regenerate_bb_impl : public regenerate_bb - { - private: - int d_period; - int d_countdown; - unsigned int d_max_regen; - unsigned int d_regen_count; +class regenerate_bb_impl : public regenerate_bb +{ +private: + int d_period; + int d_countdown; + unsigned int d_max_regen; + unsigned int d_regen_count; - public: - regenerate_bb_impl(int period, unsigned int max_regen=500); - ~regenerate_bb_impl(); +public: + regenerate_bb_impl(int period, unsigned int max_regen = 500); + ~regenerate_bb_impl(); - void set_max_regen(unsigned int regen); - void set_period(int period); + void set_max_regen(unsigned int regen); + void set_period(int period); - unsigned int max_regen() const { return d_max_regen; }; - int period() const { return d_period; }; + unsigned int max_regen() const { return d_max_regen; }; + int period() const { return d_period; }; - 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_GR_REGENERATE_BB_IMPL_H */ |