Remove UDP_EXPORT

This commit is contained in:
Jordan Sherer 2018-10-04 18:51:11 -04:00
parent 1a61dc53cc
commit c7a1f6c72a
2 changed files with 12 additions and 15 deletions

View File

@ -7,7 +7,6 @@
#include <QHostAddress> #include <QHostAddress>
#include <QColor> #include <QColor>
#include "udp_export.h"
#include "Radio.hpp" #include "Radio.hpp"
#include "pimpl_h.hpp" #include "pimpl_h.hpp"
@ -23,7 +22,7 @@ class QString;
// applications that use the Qt framework. Other applications should // applications that use the Qt framework. Other applications should
// use this classes' implementation as a reference implementation. // use this classes' implementation as a reference implementation.
// //
class UDP_EXPORT MessageServer class MessageServer
: public QObject : public QObject
{ {
Q_OBJECT; Q_OBJECT;

View File

@ -5,8 +5,6 @@
#include <QLocale> #include <QLocale>
#include <QList> #include <QList>
#include "udp_export.h"
class QVariant; class QVariant;
class QString; class QString;
@ -34,27 +32,27 @@ namespace Radio
// QVariant argument is convertible to double and is assumed to // QVariant argument is convertible to double and is assumed to
// be scaled by (10 ** -scale). // be scaled by (10 ** -scale).
// //
Frequency UDP_EXPORT frequency (QVariant const&, int scale, Frequency frequency (QVariant const&, int scale,
bool * ok = nullptr, QLocale const& = QLocale ()); bool * ok = nullptr, QLocale const& = QLocale ());
FrequencyDelta UDP_EXPORT frequency_delta (QVariant const&, int scale, FrequencyDelta frequency_delta (QVariant const&, int scale,
bool * ok = nullptr, QLocale const& = QLocale ()); bool * ok = nullptr, QLocale const& = QLocale ());
// //
// Frequency type formatting // Frequency type formatting
// //
QString UDP_EXPORT frequency_MHz_string (Frequency, QLocale const& = QLocale ()); QString frequency_MHz_string (Frequency, QLocale const& = QLocale ());
QString UDP_EXPORT frequency_MHz_string (FrequencyDelta, QLocale const& = QLocale ()); QString frequency_MHz_string (FrequencyDelta, QLocale const& = QLocale ());
QString UDP_EXPORT pretty_frequency_MHz_string (Frequency, QLocale const& = QLocale ()); QString pretty_frequency_MHz_string (Frequency, QLocale const& = QLocale ());
QString UDP_EXPORT pretty_frequency_MHz_string (double, int scale, QLocale const& = QLocale ()); QString pretty_frequency_MHz_string (double, int scale, QLocale const& = QLocale ());
QString UDP_EXPORT pretty_frequency_MHz_string (FrequencyDelta, QLocale const& = QLocale ()); QString pretty_frequency_MHz_string (FrequencyDelta, QLocale const& = QLocale ());
// //
// Callsigns // Callsigns
// //
bool UDP_EXPORT is_callsign (QString const&); bool is_callsign (QString const&);
bool UDP_EXPORT is_compound_callsign (QString const&); bool is_compound_callsign (QString const&);
QString UDP_EXPORT base_callsign (QString); QString base_callsign (QString);
QString UDP_EXPORT effective_prefix (QString); QString effective_prefix (QString);
} }
Q_DECLARE_METATYPE (Radio::Frequency); Q_DECLARE_METATYPE (Radio::Frequency);