mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-10-04 01:00:22 +00:00
Finish removing LOGIC_EXPORT
This commit is contained in:
committed by
Sebastian-byte
parent
f131f4a1eb
commit
f2e2a388f0
@@ -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);
|
||||
|
@@ -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();
|
||||
}
|
||||
|
@@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user