mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-09-04 20:08:00 +00:00
fix(sensor_data): moved declarations from header file to source file
This commit is contained in:

committed by
Carles Fernandez

parent
3452a4388b
commit
59f4a4e6a6
@@ -15,6 +15,7 @@
|
||||
*/
|
||||
|
||||
#include "sensor_data_source_configuration.h"
|
||||
#include "gnss_sdr_string_literals.h"
|
||||
#include <fstream>
|
||||
|
||||
#if USE_GLOG_AND_GFLAGS
|
||||
@@ -23,6 +24,11 @@
|
||||
#include <absl/log/log.h>
|
||||
#endif
|
||||
|
||||
using namespace std::string_literals;
|
||||
|
||||
static std::string CONFIGURATION_ROLE = "SensorData";
|
||||
|
||||
|
||||
SensorDataSourceConfiguration::SensorDataSourceConfiguration(const ConfigurationInterface* configuration)
|
||||
: enabled_(configuration->property("SensorData.enabled"s, false)), items_per_sample_(1)
|
||||
{
|
||||
|
@@ -19,7 +19,6 @@
|
||||
#define GNSS_SDR_SENSOR_DATA_SOURCE_CONFIGURATION_H
|
||||
|
||||
#include "configuration_interface.h"
|
||||
#include "gnss_sdr_string_literals.h"
|
||||
#include "sensor_data_type.h"
|
||||
#include "sensor_identifier.h"
|
||||
#include <string>
|
||||
@@ -30,10 +29,6 @@
|
||||
/** \addtogroup Algorithm_libs algorithms_libs
|
||||
* \{ */
|
||||
|
||||
using namespace std::string_literals;
|
||||
|
||||
static std::string CONFIGURATION_ROLE = "SensorData";
|
||||
|
||||
class ConfigurationInterface;
|
||||
|
||||
struct SensorDataFileConfiguration
|
||||
|
Reference in New Issue
Block a user