Remove unused variable

This commit is contained in:
Carles Fernandez 2016-08-08 12:56:14 +02:00
parent 6a46e05350
commit e4080b50d8
7 changed files with 2 additions and 9 deletions

View File

@ -86,7 +86,6 @@ private:
galileo_e1b_telemetry_decoder_cc_sptr telemetry_decoder_;
Gnss_Satellite satellite_;
int channel_;
std::string item_type_;
bool dump_;
std::string dump_filename_;
std::string role_;

View File

@ -87,7 +87,6 @@ private:
galileo_e5a_telemetry_decoder_cc_sptr telemetry_decoder_;
Gnss_Satellite satellite_;
int channel_;
std::string item_type_;
bool dump_;
std::string dump_filename_;
std::string role_;

View File

@ -81,7 +81,6 @@ private:
gps_l1_ca_telemetry_decoder_cc_sptr telemetry_decoder_;
Gnss_Satellite satellite_;
int channel_;
std::string item_type_;
bool dump_;
std::string dump_filename_;
std::string role_;

View File

@ -51,7 +51,6 @@ GpsL2MTelemetryDecoder::GpsL2MTelemetryDecoder(ConfigurationInterface* configura
in_streams_(in_streams),
out_streams_(out_streams)
{
std::string default_item_type = "gr_complex";
std::string default_dump_filename = "./navigation.dat";
DLOG(INFO) << "role " << role;
dump_ = configuration->property(role + ".dump", false);

View File

@ -57,10 +57,10 @@ public:
return role_;
}
//! Returns "gps_l2_m_telemetry_decoder"
//! Returns "GPS_L2_M_Telemetry_Decoder"
std::string implementation()
{
return "gps_l2_m_telemetry_decoder";
return "GPS_L2_M_Telemetry_Decoder";
}
void connect(gr::top_block_sptr top_block);
void disconnect(gr::top_block_sptr top_block);
@ -81,7 +81,6 @@ private:
gps_l2_m_telemetry_decoder_cc_sptr telemetry_decoder_;
Gnss_Satellite satellite_;
int channel_;
std::string item_type_;
bool dump_;
std::string dump_filename_;
std::string role_;

View File

@ -51,7 +51,6 @@ SbasL1TelemetryDecoder::SbasL1TelemetryDecoder(ConfigurationInterface* configura
in_streams_(in_streams),
out_streams_(out_streams)
{
std::string default_item_type = "gr_complex";
std::string default_dump_filename = "./navigation.dat";
DLOG(INFO) << "role " << role;
dump_ = configuration->property(role + ".dump", false);

View File

@ -84,7 +84,6 @@ private:
sbas_l1_telemetry_decoder_cc_sptr telemetry_decoder_;
Gnss_Satellite satellite_;
int channel_;
std::string item_type_;
bool dump_;
std::string dump_filename_;
std::string role_;