diff --git a/launcher/AuthServer.h b/launcher/AuthServer.h index 6b76835d..882586c3 100644 --- a/launcher/AuthServer.h +++ b/launcher/AuthServer.h @@ -3,9 +3,8 @@ #include #include #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); diff --git a/launcher/minecraft/auth/AuthProviders.h b/launcher/minecraft/auth/AuthProviders.h index 4fcce979..c51c0591 100644 --- a/launcher/minecraft/auth/AuthProviders.h +++ b/launcher/minecraft/auth/AuthProviders.h @@ -8,7 +8,6 @@ #include #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 getAll(); + void load(); + AuthProviderPtr lookup(QString id); + QList getAll(); } diff --git a/launcher/minecraft/auth/providers/BaseAuthProvider.h b/launcher/minecraft/auth/providers/BaseAuthProvider.h index 4a7c3466..af294876 100644 --- a/launcher/minecraft/auth/providers/BaseAuthProvider.h +++ b/launcher/minecraft/auth/providers/BaseAuthProvider.h @@ -7,8 +7,6 @@ #include #include - -#include "logic_export.h" #include "minecraft/auth/AccountProfile.h" class BaseAuthProvider; @@ -22,7 +20,7 @@ typedef std::shared_ptr 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