summaryrefslogtreecommitdiff
path: root/gsm-tvoid/src/lib/gsm_burst_ff.h
blob: c9a05f4e4a7c91a5bd6683d3b81c58a4ddb0a288 (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(void);

class gsm_burst_ff : public gr_block, public gsm_burst
{
private:
	
	friend gsm_burst_ff_sptr gsm_make_burst_ff(void);
	gsm_burst_ff();  
	
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