summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/rms_ff_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/lib/rms_ff_impl.h')
-rw-r--r--gr-blocks/lib/rms_ff_impl.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/gr-blocks/lib/rms_ff_impl.h b/gr-blocks/lib/rms_ff_impl.h
index 49ef1e07b3..a25fff6ecb 100644
--- a/gr-blocks/lib/rms_ff_impl.h
+++ b/gr-blocks/lib/rms_ff_impl.h
@@ -26,29 +26,29 @@
#include <gnuradio/blocks/rms_ff.h>
namespace gr {
- namespace blocks {
+namespace blocks {
- /*!
- * \brief RMS average power
- * \ingroup math_blk
- */
- class rms_ff_impl : public rms_ff
- {
- private:
- double d_alpha, d_beta, d_avg;
+/*!
+ * \brief RMS average power
+ * \ingroup math_blk
+ */
+class rms_ff_impl : public rms_ff
+{
+private:
+ double d_alpha, d_beta, d_avg;
- public:
- rms_ff_impl(double alpha = 0.0001);
- ~rms_ff_impl();
+public:
+ rms_ff_impl(double alpha = 0.0001);
+ ~rms_ff_impl();
- void set_alpha(double alpha);
+ void set_alpha(double alpha);
- 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_BLOCKS_RMS_FF_IMPL_H */