GNU Radio's IRIDIUM Package
frame_sorter.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2021 gr-iridium author.
4 *
5 * SPDX-License-Identifier: GPL-3.0-or-later
6 */
7
8#ifndef INCLUDED_IRIDIUM_FRAME_SORTER_CPP_H
9#define INCLUDED_IRIDIUM_FRAME_SORTER_CPP_H
10
11#include <gnuradio/block.h>
12#include <iridium/api.h>
13
14namespace gr {
15namespace iridium {
16
17/*!
18 * \brief <+description of block+>
19 * \ingroup iridium
20 *
21 */
22class IRIDIUM_API frame_sorter : virtual public gr::block
23{
24public:
25 typedef std::shared_ptr<frame_sorter> sptr;
26
27 /*!
28 * \brief Return a shared_ptr to a new instance of iridium::frame_sorter.
29 *
30 * To avoid accidental use of raw pointers, iridium::frame_sorter's
31 * constructor is in a private implementation
32 * class. iridium::frame_sorter::make is the public interface for
33 * creating new instances.
34 */
35 static sptr make();
36};
37
38} // namespace iridium
39} // namespace gr
40
41#endif /* INCLUDED_IRIDIUM_FRAME_SORTER_CPP_H */
#define IRIDIUM_API
Definition api.h:19
<+description of block+>
Definition frame_sorter.h:23
static sptr make()
Return a shared_ptr to a new instance of iridium::frame_sorter.
std::shared_ptr< frame_sorter > sptr
Definition frame_sorter.h:25
Definition burst_downmix.h:28
Definition burst_downmix.h:27