-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathfsk_demod.h
More file actions
32 lines (21 loc) · 767 Bytes
/
fsk_demod.h
File metadata and controls
32 lines (21 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef INCLUDED_FSK_DEMOD_H
#define INCLUDED_FSK_DEMOD_H
#include <gr_hier_block.h>
class fsk_demod;
typedef boost::shared_ptr<fsk_demod> fsk_demod_sptr;
fsk_demod_sptr smartnet_make_fsk_demod();
class fsk_demod : public gr_block
{
private:
// The friend declaration allows smartnet_make_deinterleave to
// access the private constructor.
friend fsk_demod_sptr smartnet_make_fsk_demod();
fsk_demod(); // private constructor
public:
~fsk_demod(); // public destructor
int general_work ( int noutput_items,
gr_vector_int &ninput_items,
gr_vector_const_void_star &input_items,
gr_vector_void_star &output_items);
};
#endif