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