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:
parent
c22d146376
commit
980192548d
@ -39,7 +39,7 @@ class QPainter;
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
class SDRANGEL_API ATVScreen: public QGLWidget, public ATVScreenInterface
|
class ATVScreen: public QGLWidget, public ATVScreenInterface
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
class QPainter;
|
class QPainter;
|
||||||
|
|
||||||
class SDRANGEL_API DATVScreen: public QGLWidget
|
class DATVScreen: public QGLWidget
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
@ -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:
|
||||||
|
@ -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),
|
||||||
|
@ -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();
|
||||||
|
|
||||||
|
@ -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();
|
||||||
|
|
||||||
|
@ -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();
|
||||||
|
|
||||||
|
@ -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:
|
||||||
|
@ -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)
|
||||||
|
@ -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);
|
||||||
|
|
||||||
|
@ -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:
|
||||||
|
@ -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:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user