1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-27 07:16:48 -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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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