mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2026-09-24 18:01:52 +00:00
Code cleaning
git-svn-id: https://svn.code.sf.net/p/gnss-sdr/code/trunk@267 64b25241-fba3-4117-9849-534c7e92360d
This commit is contained in:
@@ -55,15 +55,12 @@ class ConfigurationInterface;
|
||||
*/
|
||||
class FirFilter: public GNSSBlockInterface
|
||||
{
|
||||
|
||||
public:
|
||||
|
||||
FirFilter(ConfigurationInterface* configuration,
|
||||
std::string role, unsigned int in_streams,
|
||||
unsigned int out_streams, gr_msg_queue_sptr queue);
|
||||
|
||||
virtual ~FirFilter();
|
||||
|
||||
std::string role()
|
||||
{
|
||||
return role_;
|
||||
@@ -76,15 +73,12 @@ public:
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
void connect(gr_top_block_sptr top_block);
|
||||
void disconnect(gr_top_block_sptr top_block);
|
||||
gr_basic_block_sptr get_left_block();
|
||||
gr_basic_block_sptr get_right_block();
|
||||
|
||||
|
||||
private:
|
||||
|
||||
gr_fir_filter_ccf_sptr fir_filter_ccf_;
|
||||
ConfigurationInterface* config_;
|
||||
bool dump_;
|
||||
|
||||
@@ -57,15 +57,12 @@ class ConfigurationInterface;
|
||||
*/
|
||||
class FreqXlatingFirFilter: public GNSSBlockInterface
|
||||
{
|
||||
|
||||
public:
|
||||
|
||||
FreqXlatingFirFilter(ConfigurationInterface* configuration,
|
||||
std::string role, unsigned int in_streams,
|
||||
unsigned int out_streams, gr_msg_queue_sptr queue);
|
||||
|
||||
virtual ~FreqXlatingFirFilter();
|
||||
|
||||
std::string role()
|
||||
{
|
||||
return role_;
|
||||
@@ -78,15 +75,12 @@ public:
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
void connect(gr_top_block_sptr top_block);
|
||||
void disconnect(gr_top_block_sptr top_block);
|
||||
gr_basic_block_sptr get_left_block();
|
||||
gr_basic_block_sptr get_right_block();
|
||||
|
||||
|
||||
private:
|
||||
|
||||
gr_freq_xlating_fir_filter_ccf_sptr freq_xlating_fir_filter_ccf_;
|
||||
ConfigurationInterface* config_;
|
||||
bool dump_;
|
||||
|
||||
Reference in New Issue
Block a user