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 /gnuradio-runtime/lib/scheduler.h | |
parent | 78431dc6941e3acc67c858277dfe4a0ed583643c (diff) |
Tree: clang-format without the include sorting
Diffstat (limited to 'gnuradio-runtime/lib/scheduler.h')
-rw-r--r-- | gnuradio-runtime/lib/scheduler.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/gnuradio-runtime/lib/scheduler.h b/gnuradio-runtime/lib/scheduler.h index 0924808965..36bec12961 100644 --- a/gnuradio-runtime/lib/scheduler.h +++ b/gnuradio-runtime/lib/scheduler.h @@ -29,19 +29,19 @@ namespace gr { - class scheduler; - typedef boost::shared_ptr<scheduler> scheduler_sptr; +class scheduler; +typedef boost::shared_ptr<scheduler> scheduler_sptr; - /*! - * \brief Abstract scheduler that takes a flattened flow graph and - * runs it. - * - * Preconditions: details, buffers and buffer readers have been - * assigned. - */ - class GR_RUNTIME_API scheduler : boost::noncopyable - { - public: +/*! + * \brief Abstract scheduler that takes a flattened flow graph and + * runs it. + * + * Preconditions: details, buffers and buffer readers have been + * assigned. + */ +class GR_RUNTIME_API scheduler : boost::noncopyable +{ +public: /*! * \brief Construct a scheduler and begin evaluating the graph. * @@ -61,7 +61,7 @@ namespace gr { * \brief Block until the graph is done. */ virtual void wait() = 0; - }; +}; } /* namespace gr */ |