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/annotator_raw_impl.h | |
parent | 78431dc6941e3acc67c858277dfe4a0ed583643c (diff) |
Tree: clang-format without the include sorting
Diffstat (limited to 'gr-blocks/lib/annotator_raw_impl.h')
-rw-r--r-- | gr-blocks/lib/annotator_raw_impl.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/gr-blocks/lib/annotator_raw_impl.h b/gr-blocks/lib/annotator_raw_impl.h index 54bed2ea25..9bf3f9eeb9 100644 --- a/gr-blocks/lib/annotator_raw_impl.h +++ b/gr-blocks/lib/annotator_raw_impl.h @@ -21,34 +21,34 @@ */ #ifndef INCLUDED_GR_ANNOTATOR_RAW_IMPL_H -#define INCLUDED_GR_ANNOTATOR_RAW_IMPL_H +#define INCLUDED_GR_ANNOTATOR_RAW_IMPL_H #include <gnuradio/blocks/annotator_raw.h> #include <gnuradio/thread/thread.h> namespace gr { - namespace blocks { +namespace blocks { - class annotator_raw_impl : public annotator_raw - { - private: - size_t d_itemsize; - std::vector<tag_t> d_queued_tags; - gr::thread::mutex d_mutex; +class annotator_raw_impl : public annotator_raw +{ +private: + size_t d_itemsize; + std::vector<tag_t> d_queued_tags; + gr::thread::mutex d_mutex; - public: - annotator_raw_impl(size_t sizeof_stream_item); - ~annotator_raw_impl(); +public: + annotator_raw_impl(size_t sizeof_stream_item); + ~annotator_raw_impl(); - // insert a tag to be added - void add_tag(uint64_t offset, pmt::pmt_t key, pmt::pmt_t val); + // insert a tag to be added + void add_tag(uint64_t offset, pmt::pmt_t key, pmt::pmt_t val); - 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_ANNOTATOR_RAW_IMPL_H */ |