Include what you use

This commit is contained in:
Carles Fernandez 2020-07-14 20:12:08 +02:00
parent 142fd8a3cb
commit 8666ff7706
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
7 changed files with 5 additions and 5 deletions

View File

@ -26,6 +26,7 @@
#include "channel_fsm.h"
#include "gnss_synchro.h"
#include "pcps_assisted_acquisition_cc.h"
#include <memory>
#include <string>
#include <vector>

View File

@ -21,7 +21,6 @@
#define GNSS_SDR_NOTCH_H
#if GNURADIO_USES_STD_POINTERS
#include <memory>
#else
#include <boost/shared_ptr.hpp>
#endif
@ -29,6 +28,7 @@
#include <gnuradio/fft/fft.h>
#include <volk_gnsssdr/volk_gnsssdr_alloc.h> // for volk_gnsssdr::vector
#include <cstdint>
#include <memory>
class Notch;

View File

@ -21,7 +21,6 @@
#define GNSS_SDR_NOTCH_LITE_H
#if GNURADIO_USES_STD_POINTERS
#include <memory>
#else
#include <boost/shared_ptr.hpp>
#endif
@ -29,6 +28,7 @@
#include <gnuradio/fft/fft.h>
#include <volk_gnsssdr/volk_gnsssdr_alloc.h> // for volk_gnsssdr::vector
#include <cstdint>
#include <memory>
class NotchLite;

View File

@ -60,6 +60,7 @@
#include <algorithm> // for find, min
#include <chrono> // for milliseconds
#include <cmath> // for floor, fmod, log
#include <ctime> // for time_t, gmtime, strftime
#include <exception> // for exception
#include <iostream> // for operator<<
#include <limits> // for numeric_limits

View File

@ -31,7 +31,6 @@
#include "tcp_cmd_interface.h" // for TcpCmdInterface
#include <pmt/pmt.h>
#include <array> // for array
#include <ctime> // for time_t (gmtime, strftime in implementation)
#include <memory> // for shared_ptr
#include <string> // for string
#include <thread> // for std::thread

View File

@ -24,7 +24,6 @@
#include "gnss_satellite.h"
#include <glog/logging.h>
#include <cstddef> // for size_t
#include <map>
#include <ostream> // for operator<<

View File

@ -30,11 +30,11 @@
#include "glonass_gnav_utc_model.h"
#include <bitset>
#include <cstdint>
#include <map>
#include <string>
#include <utility> // for pair
#include <vector> // for vector
/*!
* \brief This class decodes a GLONASS GNAV Data message as described in GLONASS ICD (Edition 5.1)
* \note Code added as part of GSoC 2017 program