1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-05 16:31:15 -05:00

Make all include directives identical

Fixes the 5 includes that are different from the majority:
grep -Ehr "#include .+dsptypes" --include=*.h | sort | uniq -c
    110 #include "dsp/dsptypes.h"
      1 #include <dsp/dsptypes.h>
      4 #include "dsptypes.h"
This commit is contained in:
Daniele Forsi 2024-04-20 19:15:25 +02:00
parent 570c1f6877
commit fe84c20aff
5 changed files with 5 additions and 5 deletions

View File

@ -24,7 +24,7 @@
#include <QByteArray> #include <QByteArray>
#include <QString> #include <QString>
#include <dsp/dsptypes.h> #include "dsp/dsptypes.h"
class Serializable; class Serializable;

View File

@ -23,7 +23,7 @@
#define SDRBASE_DSP_CHANNELSAMPLESINK_H_ #define SDRBASE_DSP_CHANNELSAMPLESINK_H_
#include "export.h" #include "export.h"
#include "dsptypes.h" #include "dsp/dsptypes.h"
class Message; class Message;

View File

@ -23,7 +23,7 @@
#define SDRBASE_DSP_CHANNELSAMPLESOURCE_H_ #define SDRBASE_DSP_CHANNELSAMPLESOURCE_H_
#include "export.h" #include "export.h"
#include "dsptypes.h" #include "dsp/dsptypes.h"
class SDRBASE_API ChannelSampleSource { class SDRBASE_API ChannelSampleSource {
public: public:

View File

@ -21,7 +21,7 @@
#define SDRBASE_DSP_GLSPECTRUMINTERFACE_H_ #define SDRBASE_DSP_GLSPECTRUMINTERFACE_H_
#include <vector> #include <vector>
#include "dsptypes.h" #include "dsp/dsptypes.h"
class GLSpectrumInterface class GLSpectrumInterface
{ {

View File

@ -22,7 +22,7 @@
#define SDRBASE_DSP_PROJECTOR_H #define SDRBASE_DSP_PROJECTOR_H
#include "export.h" #include "export.h"
#include "dsptypes.h" #include "dsp/dsptypes.h"
class SDRBASE_API Projector class SDRBASE_API Projector
{ {