1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-25 22:43:14 +00:00

Add includes, remove unused ones

This commit is contained in:
Carles Fernandez 2019-02-10 00:52:29 +01:00
parent 59841057e9
commit 53a813b3a1
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
2 changed files with 10 additions and 7 deletions

View File

@ -34,12 +34,11 @@
#ifndef GNSS_SDR_GNSS_SYNCHRO_MONITOR_H
#define GNSS_SDR_GNSS_SYNCHRO_MONITOR_H
#include "gnss_synchro_udp_sink.h"
#include <gnuradio/sync_block.h>
#include <fstream>
#include <memory>
#include <string>
#include <utility>
#include <vector>
class gnss_synchro_monitor;

View File

@ -29,16 +29,20 @@
* -------------------------------------------------------------------------
*/
#ifndef GNSS_SYNCHRO_UDP_SINK_H_
#define GNSS_SYNCHRO_UDP_SINK_H_
#ifndef GNSS_SDR_GNSS_SYNCHRO_UDP_SINK_H_
#define GNSS_SDR_GNSS_SYNCHRO_UDP_SINK_H_
#include "gnss_synchro.h"
#include <boost/asio.hpp>
#include <boost/system/error_code.hpp>
#include <string>
#include <vector>
class Gnss_Synchro_Udp_Sink
{
public:
Gnss_Synchro_Udp_Sink(std::vector<std::string> addresses, const uint16_t &port);
Gnss_Synchro_Udp_Sink(std::vector<std::string> addresses, const uint16_t& port);
bool write_gnss_synchro(const std::vector<Gnss_Synchro>& stocks);
private:
@ -50,4 +54,4 @@ private:
};
#endif /* GNSS_SYNCHRO_UDP_SINK_H_ */
#endif /* GNSS_SDR_GNSS_SYNCHRO_UDP_SINK_H_ */