1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-06-25 05:25:27 -04:00

Adapt to MSVC linker: removed SDRANGEL_API

This commit is contained in:
f4exb 2018-03-03 21:19:59 +01:00
parent c22d146376
commit 980192548d
12 changed files with 11 additions and 13 deletions

View File

@ -39,7 +39,7 @@ class QPainter;
class SDRANGEL_API ATVScreen: public QGLWidget, public ATVScreenInterface class ATVScreen: public QGLWidget, public ATVScreenInterface
{ {
Q_OBJECT Q_OBJECT

View File

@ -35,7 +35,7 @@
class QPainter; class QPainter;
class SDRANGEL_API DATVScreen: public QGLWidget class DATVScreen: public QGLWidget
{ {
Q_OBJECT Q_OBJECT

View File

@ -40,7 +40,7 @@ class MessageQueue;
class SDRBASE_API DownChannelizer : public BasebandSampleSink { class SDRBASE_API DownChannelizer : public BasebandSampleSink {
Q_OBJECT Q_OBJECT
public: public:
class SDRANGEL_API MsgChannelizerNotification : public Message { class MsgChannelizerNotification : public Message {
MESSAGE_CLASS_DECLARATION MESSAGE_CLASS_DECLARATION
public: public:

View File

@ -24,7 +24,7 @@
#include "util/export.h" #include "util/export.h"
template<typename AccuType, uint32_t HBFilterOrder> template<typename AccuType, uint32_t HBFilterOrder>
class SDRANGEL_API IntHalfbandFilter { class SDRBASE_API IntHalfbandFilter {
public: public:
IntHalfbandFilter() : IntHalfbandFilter() :
m_ptr(0), m_ptr(0),

View File

@ -27,7 +27,7 @@
#include "util/export.h" #include "util/export.h"
template<typename AccuType, uint32_t HBFilterOrder> template<typename AccuType, uint32_t HBFilterOrder>
class SDRANGEL_API IntHalfbandFilterDB { class SDRBASE_API IntHalfbandFilterDB {
public: public:
IntHalfbandFilterDB(); IntHalfbandFilterDB();

View File

@ -27,7 +27,7 @@
#include "util/export.h" #include "util/export.h"
template<typename AccuType, typename SampleType, uint32_t HBFilterOrder> template<typename AccuType, typename SampleType, uint32_t HBFilterOrder>
class SDRANGEL_API IntHalfbandFilterDBF { class SDRBASE_API IntHalfbandFilterDBF {
public: public:
IntHalfbandFilterDBF(); IntHalfbandFilterDBF();

View File

@ -30,7 +30,7 @@
#include "util/export.h" #include "util/export.h"
template<uint32_t HBFilterOrder> template<uint32_t HBFilterOrder>
class SDRANGEL_API IntHalfbandFilterEO1 { class SDRBASE_API IntHalfbandFilterEO1 {
public: public:
IntHalfbandFilterEO1(); IntHalfbandFilterEO1();

View File

@ -36,7 +36,7 @@ class MessageQueue;
class SDRBASE_API UpChannelizer : public BasebandSampleSource { class SDRBASE_API UpChannelizer : public BasebandSampleSource {
Q_OBJECT Q_OBJECT
public: public:
class SDRANGEL_API MsgChannelizerNotification : public Message { class MsgChannelizerNotification : public Message {
MESSAGE_CLASS_DECLARATION MESSAGE_CLASS_DECLARATION
public: public:

View File

@ -42,8 +42,6 @@
# define SDRBASE_API # define SDRBASE_API
#endif #endif
#define SDRANGEL_API SDRBASE_API /* to be compatible with current situation TODO: remove */
/* the 'SDRGUI_API' controls the import/export of 'sdrgui' symbols /* the 'SDRGUI_API' controls the import/export of 'sdrgui' symbols
*/ */
#if !defined(sdrangel_STATIC) #if !defined(sdrangel_STATIC)

View File

@ -48,7 +48,7 @@ protected:
bool writeTag(Type type, quint32 id, quint32 length); bool writeTag(Type type, quint32 id, quint32 length);
}; };
class SDRANGEL_API SimpleDeserializer { class SDRBASE_API SimpleDeserializer {
public: public:
SimpleDeserializer(const QByteArray& data); SimpleDeserializer(const QByteArray& data);

View File

@ -14,7 +14,7 @@ class MessageQueue;
class SDRGUI_API SpectrumVis : public BasebandSampleSink { class SDRGUI_API SpectrumVis : public BasebandSampleSink {
public: public:
class SDRANGEL_API MsgConfigureSpectrumVis : public Message { class MsgConfigureSpectrumVis : public Message {
MESSAGE_CLASS_DECLARATION MESSAGE_CLASS_DECLARATION
public: public:

View File

@ -47,7 +47,7 @@ namespace qtwebapp {
class LoggerWithFile; class LoggerWithFile;
} }
class SDRANGEL_API MainCore : public QObject { class MainCore : public QObject {
Q_OBJECT Q_OBJECT
public: public: