mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-05-02 07:34:36 +02:00

* Tasks are now described by class name and object name (or memory address). * Tasks starts are logged. * Aborted tasks are now treated just as the other cases.
16 lines
218 B
C++
16 lines
218 B
C++
#pragma once
|
|
|
|
#include "tasks/Task.h"
|
|
|
|
class OneSixInstance;
|
|
class FoldersTask : public Task
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
FoldersTask(OneSixInstance * inst);
|
|
void executeTask() override;
|
|
private:
|
|
OneSixInstance *m_inst;
|
|
};
|
|
|