Finish removing LOGIC_EXPORT

This commit is contained in:
Sebastian
2021-09-13 08:37:46 -05:00
committed by Sebastian-byte
parent f131f4a1eb
commit f2e2a388f0
3 changed files with 5 additions and 9 deletions

View File

@@ -3,9 +3,8 @@
#include <QString>
#include <QTcpServer>
#include "settings/SettingsObject.h"
#include "multimc_logic_export.h"
class MULTIMC_LOGIC_EXPORT AuthServer: public QObject
class AuthServer: public QObject
{
public:
explicit AuthServer(QObject *parent = 0);

View File

@@ -8,7 +8,6 @@
#include <QMap>
#include "providers/BaseAuthProvider.h"
#include "logic_export.h"
/*!
* \brief Namespace for auth providers.
@@ -16,7 +15,7 @@
*/
namespace AuthProviders
{
LOGIC_EXPORT void load();
LOGIC_EXPORT AuthProviderPtr lookup(QString id);
LOGIC_EXPORT QList<AuthProviderPtr> getAll();
void load();
AuthProviderPtr lookup(QString id);
QList<AuthProviderPtr> getAll();
}

View File

@@ -7,8 +7,6 @@
#include <QProcess>
#include <QUrl>
#include "logic_export.h"
#include "minecraft/auth/AccountProfile.h"
class BaseAuthProvider;
@@ -22,7 +20,7 @@ typedef std::shared_ptr<BaseAuthProvider> AuthProviderPtr;
* To create a new provider, create a new class inheriting from this class,
* implement the pure virtual functions, and
*/
class LOGIC_EXPORT BaseAuthProvider : public QObject
class BaseAuthProvider : public QObject
{
Q_OBJECT