1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-12-15 04:30:33 +00:00

Fix wrong comments and add consistency in header guard name

This commit is contained in:
Carles Fernandez 2018-01-23 21:41:19 +01:00
parent f6f14f246b
commit 9b7ce39c57
2 changed files with 8 additions and 8 deletions

View File

@ -29,8 +29,8 @@
*/
#ifndef GN3S_SIGNAL_SOURCE_H_
#define GN3S_SIGNAL_SOURCE_H_
#ifndef GNSS_SDR_GN3S_SIGNAL_SOURCE_H_
#define GNSS_SDR_GN3S_SIGNAL_SOURCE_H_
#include <string>
#include <gnuradio/hier_block2.h>
@ -90,4 +90,4 @@ private:
boost::shared_ptr<gr::msg_queue> queue_;
};
#endif /*GN3S_SIGNAL_SOURCE_H_*/
#endif /*GNSS_SDR_GN3S_SIGNAL_SOURCE_H_*/

View File

@ -29,8 +29,8 @@
*/
#ifndef LABSAT_SIGNAL_SOURCE_H_
#define LABSAT_SIGNAL_SOURCE_H_
#ifndef GNSS_SDR_LABSAT_SIGNAL_SOURCE_H_
#define GNSS_SDR_LABSAT_SIGNAL_SOURCE_H_
#include <string>
#include <gnuradio/hier_block2.h>
@ -42,7 +42,7 @@
class ConfigurationInterface;
/*!
* \brief This class reads samples from a GN3S USB dongle, a RF front-end signal sampler
* \brief This class reads samples stored by a LabSat 2 or LabSat 3 device
*/
class LabsatSignalSource: public GNSSBlockInterface
{
@ -59,7 +59,7 @@ public:
}
/*!
* \brief Returns "LabsatSignalSource".
* \brief Returns "Labsat_Signal_Source".
*/
inline std::string implementation() override
{
@ -91,4 +91,4 @@ private:
boost::shared_ptr<gr::msg_queue> queue_;
};
#endif /*LABSAT_SIGNAL_SOURCE_H_*/
#endif /*GNSS_SDR_LABSAT_SIGNAL_SOURCE_H_*/