2017-01-08 09:28:05 +05:30
|
|
|
/* Copyright 2013-2017 MultiMC Contributors
|
2015-07-21 06:08:15 +05:30
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <launch/LaunchStep.h>
|
2016-06-16 05:50:23 +05:30
|
|
|
#include <memory>
|
|
|
|
#include "minecraft/auth/AuthSession.h"
|
2015-07-21 06:08:15 +05:30
|
|
|
|
2016-06-16 05:50:23 +05:30
|
|
|
// FIXME: temporary wrapper for existing task.
|
|
|
|
class ExtractNatives: public LaunchStep
|
2015-07-21 06:08:15 +05:30
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2016-06-16 05:50:23 +05:30
|
|
|
explicit ExtractNatives(LaunchTask *parent) : LaunchStep(parent){};
|
|
|
|
virtual ~ExtractNatives(){};
|
|
|
|
|
2016-11-17 05:51:49 +05:30
|
|
|
void executeTask() override;
|
|
|
|
bool canAbort() const override
|
2015-07-21 06:08:15 +05:30
|
|
|
{
|
2016-06-16 05:50:23 +05:30
|
|
|
return false;
|
2015-07-21 06:08:15 +05:30
|
|
|
}
|
2016-11-17 05:51:49 +05:30
|
|
|
void finalize() override;
|
2015-07-21 06:08:15 +05:30
|
|
|
};
|
2016-06-16 05:50:23 +05:30
|
|
|
|
|
|
|
|