summaryrefslogtreecommitdiff
path: root/gsm-tvoid/src/lib/gsm_burst_ff.h
blob: 30047f21d05da0510d0ae1c9aa16ccb122fefff6 (plain)
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
#ifndef INCLUDED_GSM_BURST_FF_H
#define INCLUDED_GSM_BURST_FF_H

#include <gr_block.h>
#include <gsm_burst.h>

class gsm_burst_ff;

typedef boost::shared_ptr<gsm_burst_ff> gsm_burst_ff_sptr;

gsm_burst_ff_sptr gsm_make_burst_ff(gr_feval_dd *);

class gsm_burst_ff : public gr_block, public gsm_burst
{
private:
	
	friend gsm_burst_ff_sptr gsm_make_burst_ff(gr_feval_dd *);
	gsm_burst_ff(gr_feval_dd *t);  
	
public:
	~gsm_burst_ff ();	

	void forecast (int noutput_items, gr_vector_int &ninput_items_required);
	
	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 /* INCLUDED_GSM_BURST_FF_H */
personal git repositories of Harald Welte. Your mileage may vary