1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2026-04-26 08:41:27 +00:00

Reorder includes: local headers first, then 3rd-party library headers, and finally standard headers

This commit is contained in:
Carles Fernandez
2018-02-26 03:15:53 +01:00
parent 24f6003ba0
commit 658e677fc3
266 changed files with 968 additions and 994 deletions

View File

@@ -31,10 +31,9 @@
#include "gps_l5_telemetry_decoder.h"
#include "configuration_interface.h"
#include <gnuradio/io_signature.h>
#include <glog/logging.h>
#include "concurrent_queue.h"
#include "configuration_interface.h"
using google::LogMessage;
@@ -43,9 +42,9 @@ GpsL5TelemetryDecoder::GpsL5TelemetryDecoder(ConfigurationInterface* configurati
std::string role,
unsigned int in_streams,
unsigned int out_streams) :
role_(role),
in_streams_(in_streams),
out_streams_(out_streams)
role_(role),
in_streams_(in_streams),
out_streams_(out_streams)
{
std::string default_dump_filename = "./navigation.dat";
DLOG(INFO) << "role " << role;
@@ -54,8 +53,6 @@ GpsL5TelemetryDecoder::GpsL5TelemetryDecoder(ConfigurationInterface* configurati
// make telemetry decoder object
telemetry_decoder_ = gps_l5_make_telemetry_decoder_cc(satellite_, dump_);
DLOG(INFO) << "telemetry_decoder(" << telemetry_decoder_->unique_id() << ")";
LOG(INFO) << "global navigation message queue assigned to telemetry_decoder (" << telemetry_decoder_->unique_id() << ")" << "role " << role;
channel_ = 0;
}