1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-11-10 20:23:09 +00:00

Tidying up includes: own .h, C libraries, C++ libraries, other libraries' .h, project's .h. Some old time.h and stdlib.h have been replaced by ctime and cstdlib

git-svn-id: https://svn.code.sf.net/p/gnss-sdr/code/trunk@477 64b25241-fba3-4117-9849-534c7e92360d
This commit is contained in:
Carles Fernandez
2014-01-14 23:22:54 +00:00
parent 05accfb1d7
commit 4edd485cd0
34 changed files with 169 additions and 193 deletions

View File

@@ -7,7 +7,7 @@
*
* -------------------------------------------------------------------------
*
* Copyright (C) 2010-2013 (see AUTHORS file for a list of contributors)
* Copyright (C) 2010-2014 (see AUTHORS file for a list of contributors)
*
* GNSS-SDR is a software defined Global Navigation
* Satellite Systems receiver
@@ -31,9 +31,6 @@
*/
#include "file_signal_source.h"
#include "gnss_sdr_valve.h"
#include "configuration_interface.h"
#include <string>
#include <iostream>
#include <fstream>
#include <iomanip>
@@ -41,7 +38,8 @@
#include <gflags/gflags.h>
#include <glog/log_severity.h>
#include <glog/logging.h>
//#include <gnuradio/io_signature.h>
#include "gnss_sdr_valve.h"
#include "configuration_interface.h"
using google::LogMessage;

View File

@@ -7,7 +7,7 @@
*
* -------------------------------------------------------------------------
*
* Copyright (C) 2010-2013 (see AUTHORS file for a list of contributors)
* Copyright (C) 2010-2014 (see AUTHORS file for a list of contributors)
*
* GNSS-SDR is a software defined Global Navigation
* Satellite Systems receiver
@@ -31,16 +31,16 @@
*/
#include "nsr_file_signal_source.h"
#include "gnss_sdr_valve.h"
#include "configuration_interface.h"
#include <string>
#include <iostream>
#include <exception>
#include <fstream>
#include <iomanip>
#include <exception>
#include <iostream>
#include <gflags/gflags.h>
#include <glog/log_severity.h>
#include <glog/logging.h>
#include "gnss_sdr_valve.h"
#include "configuration_interface.h"
using google::LogMessage;

View File

@@ -5,7 +5,7 @@
*
* -------------------------------------------------------------------------
*
* Copyright (C) 2010-2012 (see AUTHORS file for a list of contributors)
* Copyright (C) 2010-2014 (see AUTHORS file for a list of contributors)
*
* GNSS-SDR is a software defined Global Navigation
* Satellite Systems receiver
@@ -29,18 +29,13 @@
*/
#include "uhd_signal_source.h"
//#include <uhd/usrp/multi_usrp.hpp>
//#include <gnuradio/gr_uhd_usrp_source.h>
#include <gnuradio/uhd/usrp_source.h>
#include <iostream>
#include <uhd/types/device_addr.hpp>
#include <uhd/exception.hpp>
//#include <gnuradio/gr_file_sink.h>
//#include <gnuradio/blocks/file_sink.h>
#include "configuration_interface.h"
#include "gnss_sdr_valve.h"
#include <glog/log_severity.h>
#include <glog/logging.h>
#include <iostream>
#include "configuration_interface.h"
#include "gnss_sdr_valve.h"
#include "GPS_L1_CA.h"
using google::LogMessage;

View File

@@ -5,7 +5,7 @@
* \author Javier Arribas jarribas (at) cttc.es
* -------------------------------------------------------------------------
*
* Copyright (C) 2010-2012 (see AUTHORS file for a list of contributors)
* Copyright (C) 2010-2014 (see AUTHORS file for a list of contributors)
*
* GNSS-SDR is a software defined Global Navigation
* Satellite Systems receiver
@@ -28,8 +28,8 @@
* -------------------------------------------------------------------------
*/
#ifndef GNSS_SDR_unpack_byte_2bit_samples_H
#define GNSS_SDR_unpack_byte_2bit_samples_H
#ifndef GNSS_SDR_UNPACK_BYTE_2BIT_SAMPLES_H
#define GNSS_SDR_UNPACK_BYTE_2BIT_SAMPLES_H
#include <gnuradio/sync_interpolator.h>
@@ -51,8 +51,8 @@ private:
public:
unpack_byte_2bit_samples();
~unpack_byte_2bit_samples();
int work (int noutput_items,gr_vector_const_void_star &input_items,
gr_vector_void_star &output_items);
int work (int noutput_items, gr_vector_const_void_star &input_items,
gr_vector_void_star &output_items);
};
#endif