summaryrefslogtreecommitdiff
path: root/gr-blocks/include/gnuradio/blocks/vco_c.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/include/gnuradio/blocks/vco_c.h
parent78431dc6941e3acc67c858277dfe4a0ed583643c (diff)
Tree: clang-format without the include sorting
Diffstat (limited to 'gr-blocks/include/gnuradio/blocks/vco_c.h')
-rw-r--r--gr-blocks/include/gnuradio/blocks/vco_c.h42
1 files changed, 21 insertions, 21 deletions
diff --git a/gr-blocks/include/gnuradio/blocks/vco_c.h b/gr-blocks/include/gnuradio/blocks/vco_c.h
index ab9723af5b..b897196238 100644
--- a/gr-blocks/include/gnuradio/blocks/vco_c.h
+++ b/gr-blocks/include/gnuradio/blocks/vco_c.h
@@ -27,33 +27,33 @@
#include <gnuradio/sync_block.h>
namespace gr {
- namespace blocks {
+namespace blocks {
+
+/*!
+ * \brief VCO - Voltage controlled oscillator
+ * \ingroup modulators_blk
+ * \ingroup waveform_generators_blk
+ *
+ * \details
+ * input: float stream of control voltages; output: complex oscillator output
+ */
+class BLOCKS_API vco_c : virtual public sync_block
+{
+public:
+ // gr::blocks::vco_c::sptr
+ typedef boost::shared_ptr<vco_c> sptr;
/*!
* \brief VCO - Voltage controlled oscillator
- * \ingroup modulators_blk
- * \ingroup waveform_generators_blk
*
- * \details
- * input: float stream of control voltages; output: complex oscillator output
+ * \param sampling_rate sampling rate (Hz)
+ * \param sensitivity units are radians/sec/volt
+ * \param amplitude output amplitude
*/
- class BLOCKS_API vco_c : virtual public sync_block
- {
- public:
- // gr::blocks::vco_c::sptr
- typedef boost::shared_ptr<vco_c> sptr;
-
- /*!
- * \brief VCO - Voltage controlled oscillator
- *
- * \param sampling_rate sampling rate (Hz)
- * \param sensitivity units are radians/sec/volt
- * \param amplitude output amplitude
- */
- static sptr make(double sampling_rate, double sensitivity, double amplitude);
- };
+ static sptr make(double sampling_rate, double sensitivity, double amplitude);
+};
- } /* namespace blocks */
+} /* namespace blocks */
} /* namespace gr */
#endif /* INCLUDED_GR_VCO_C_H */