mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-01-18 21:23:02 +00:00
Add includes (make cpplint's build/include_what_you_use filter happy)
This commit is contained in:
parent
13b5d80ab6
commit
ccbe1c9ac9
@ -22,6 +22,7 @@
|
||||
#include "rtklib_solver.h" // for Rtklib_Solver
|
||||
#include <glog/logging.h> // for DLOG
|
||||
#include <cmath> // for M_PI
|
||||
#include <cstring> // for memcpy
|
||||
#include <fcntl.h> // for fcntl
|
||||
#include <iostream> // for std::cerr
|
||||
#include <limits> // std::numeric_limits
|
||||
|
@ -20,7 +20,7 @@
|
||||
#include "galileo_e6_signal_replica.h"
|
||||
#include "Galileo_E6.h"
|
||||
#include "gnss_signal_replica.h"
|
||||
#include <iostream>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
void galileo_e6_b_code_gen_complex_primary(own::span<std::complex<float>> dest,
|
||||
|
@ -20,6 +20,8 @@
|
||||
|
||||
#include "gnss_sdr_make_unique.h"
|
||||
#include <gnuradio/fft/fft.h>
|
||||
#include <memory>
|
||||
#include <utility>
|
||||
|
||||
#if GNURADIO_FFT_USES_TEMPLATES
|
||||
using gnss_fft_complex_fwd = gr::fft::fft_complex_fwd;
|
||||
|
@ -22,7 +22,8 @@
|
||||
#include "concurrent_queue.h"
|
||||
#include "signal_source_base.h"
|
||||
#include <pmt/pmt.h>
|
||||
|
||||
#include <cstddef>
|
||||
#include <string>
|
||||
|
||||
/** \addtogroup Signal_Source
|
||||
* \{ */
|
||||
|
@ -22,6 +22,7 @@
|
||||
#define GNSS_SDR_FILE_SIGNAL_SOURCE_H
|
||||
|
||||
#include "file_source_base.h"
|
||||
#include <string>
|
||||
|
||||
/** \addtogroup Signal_Source Signal Source
|
||||
* Classes for Signal Source management.
|
||||
|
@ -20,16 +20,18 @@
|
||||
|
||||
#include "concurrent_queue.h"
|
||||
#include "signal_source_base.h"
|
||||
#include <gnuradio/blocks/file_sink.h> // for dump
|
||||
#include <gnuradio/blocks/file_source.h>
|
||||
#include <gnuradio/blocks/throttle.h>
|
||||
#include <pmt/pmt.h>
|
||||
#include <tuple>
|
||||
|
||||
// for dump
|
||||
#include <gnuradio/blocks/file_sink.h>
|
||||
#include <cstddef>
|
||||
#include <string>
|
||||
#include <tuple>
|
||||
|
||||
/** \addtogroup Signal_Source
|
||||
* \{ */
|
||||
/** \addtogroup Signal_Source_adapters
|
||||
* \{ */
|
||||
|
||||
class ConfigurationInterface;
|
||||
|
||||
@ -61,8 +63,6 @@ class ConfigurationInterface;
|
||||
//! .dump - whether to archive input data
|
||||
//!
|
||||
//! .dump_filename - if dumping, path to file for output
|
||||
|
||||
|
||||
class FileSourceBase : public SignalSourceBase
|
||||
{
|
||||
public:
|
||||
@ -182,5 +182,6 @@ private:
|
||||
gr::blocks::file_sink::sptr sink_;
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
/** \} */
|
||||
/** \} */
|
||||
#endif // GNSS_SDR_FILE_SOURCE_BASE_H
|
||||
|
@ -23,6 +23,9 @@
|
||||
|
||||
#include "file_source_base.h"
|
||||
#include "unpack_byte_2bit_samples.h"
|
||||
#include <cstddef>
|
||||
#include <string>
|
||||
#include <tuple>
|
||||
|
||||
/** \addtogroup Signal_Source
|
||||
* \{ */
|
||||
|
@ -20,6 +20,9 @@
|
||||
|
||||
#include "file_source_base.h"
|
||||
#include "unpack_intspir_1bit_samples.h"
|
||||
#include <cstddef>
|
||||
#include <string>
|
||||
#include <tuple>
|
||||
|
||||
|
||||
/** \addtogroup Signal_Source
|
||||
|
@ -23,6 +23,9 @@
|
||||
#include "file_source_base.h"
|
||||
#include "unpack_byte_2bit_cpx_samples.h"
|
||||
#include <gnuradio/blocks/interleaved_short_to_complex.h>
|
||||
#include <cstddef>
|
||||
#include <string>
|
||||
#include <tuple>
|
||||
|
||||
/** \addtogroup Signal_Source
|
||||
* \{ */
|
||||
|
@ -24,6 +24,9 @@
|
||||
#include "file_source_base.h"
|
||||
#include "unpack_2bit_samples.h"
|
||||
#include <gnuradio/blocks/interleaved_char_to_complex.h>
|
||||
#include <cstddef>
|
||||
#include <string>
|
||||
#include <tuple>
|
||||
|
||||
|
||||
/** \addtogroup Signal_Source
|
||||
|
@ -21,6 +21,7 @@
|
||||
#include "gnss_block_interface.h"
|
||||
#include <gnuradio/sync_block.h>
|
||||
#include <fstream> // std::ifstream
|
||||
#include <string>
|
||||
|
||||
/** \addtogroup Signal_Source
|
||||
* \{ */
|
||||
|
@ -28,6 +28,7 @@
|
||||
#include <bitset>
|
||||
#include <exception>
|
||||
#include <iostream>
|
||||
#include <memory>
|
||||
#include <sstream>
|
||||
#include <utility>
|
||||
|
||||
|
@ -21,6 +21,7 @@
|
||||
#define GNSS_SDR_UNPACK_BYTE_4BIT_SAMPLES_H
|
||||
|
||||
#include <gnuradio/sync_interpolator.h>
|
||||
#include <memory>
|
||||
|
||||
/** \addtogroup Signal_Source
|
||||
* \{ */
|
||||
|
@ -26,7 +26,8 @@
|
||||
#define GNSS_SDR_FPGA_BUFFER_MONITOR_H
|
||||
|
||||
#include <cstdint> // for int32_t
|
||||
#include <fstream> // for string, ofstream
|
||||
#include <fstream> // for std::ofstream
|
||||
#include <string> // for std::string
|
||||
|
||||
/** \addtogroup Signal_Source
|
||||
* \{ */
|
||||
|
@ -19,6 +19,7 @@
|
||||
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
#include <utility>
|
||||
|
||||
/** \addtogroup Core
|
||||
* \{ */
|
||||
|
@ -21,7 +21,9 @@
|
||||
#include "nav_message.pb.h" // file created by Protocol Buffers at compile time
|
||||
#include "nav_message_packet.h"
|
||||
#include <cstdint>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <utility>
|
||||
|
||||
/** \addtogroup Telemetry_Decoder
|
||||
* \{ */
|
||||
|
Loading…
Reference in New Issue
Block a user