summaryrefslogtreecommitdiff
path: root/gr-analog/lib/phase_modulator_fc_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-analog/lib/phase_modulator_fc_impl.h
parent78431dc6941e3acc67c858277dfe4a0ed583643c (diff)
Tree: clang-format without the include sorting
Diffstat (limited to 'gr-analog/lib/phase_modulator_fc_impl.h')
-rw-r--r--gr-analog/lib/phase_modulator_fc_impl.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/gr-analog/lib/phase_modulator_fc_impl.h b/gr-analog/lib/phase_modulator_fc_impl.h
index 8b7c1df053..ac6f53898d 100644
--- a/gr-analog/lib/phase_modulator_fc_impl.h
+++ b/gr-analog/lib/phase_modulator_fc_impl.h
@@ -26,30 +26,30 @@
#include <gnuradio/analog/phase_modulator_fc.h>
namespace gr {
- namespace analog {
+namespace analog {
- class phase_modulator_fc_impl : public phase_modulator_fc
- {
- private:
- double d_sensitivity;
- double d_phase;
+class phase_modulator_fc_impl : public phase_modulator_fc
+{
+private:
+ double d_sensitivity;
+ double d_phase;
- public:
- phase_modulator_fc_impl(double sensitivity);
- ~phase_modulator_fc_impl();
+public:
+ phase_modulator_fc_impl(double sensitivity);
+ ~phase_modulator_fc_impl();
- double sensitivity() const { return d_sensitivity; }
- double phase() const { return d_phase; }
+ double sensitivity() const { return d_sensitivity; }
+ double phase() const { return d_phase; }
- void set_sensitivity(double s) { d_sensitivity = s; }
- void set_phase(double p) { d_phase = p; }
+ void set_sensitivity(double s) { d_sensitivity = s; }
+ void set_phase(double p) { d_phase = p; }
- 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 analog */
+} /* namespace analog */
} /* namespace gr */
#endif /* INCLUDED_ANALOG_PHASE_MODULATOR_FC_IMPL_H */