1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-11-17 23:55:15 +00:00

Introducing Gnss_Satellite into the receiver

git-svn-id: https://svn.code.sf.net/p/gnss-sdr/code/trunk@130 64b25241-fba3-4117-9849-534c7e92360d
This commit is contained in:
Carles Fernandez
2012-01-19 07:35:49 +00:00
parent 115b36c722
commit d9aff36247
8 changed files with 112 additions and 33 deletions

View File

@@ -38,6 +38,7 @@
#define GNSS_SDR_CHANNEL_INTERFACE_H_
#include "gnss_block_interface.h"
#include "gnss_satellite.h"
/*!
* \brief This abstract class represents an interface to a channel GNSS block.
@@ -52,9 +53,9 @@ class ChannelInterface: public GNSSBlockInterface
public:
virtual unsigned int satellite() = 0;
virtual Gnss_Satellite satellite() const = 0;
virtual void start_acquisition() = 0;
virtual void set_satellite(unsigned int) = 0;
virtual void set_satellite(Gnss_Satellite) = 0;
virtual void start() = 0;
virtual void stop() = 0;
};