diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-04-26 23:04:50 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-04-26 23:04:50 +0200 |
commit | f8650e3965582a57c3d0ccb5f234e6229051b16a (patch) | |
tree | f815fc22ae303e0ebe491a5d38b3f09c94da948d /logic/tasks/ProgressProvider.h | |
parent | 84549ed8078bdbd029aa5a89facc0412b8b5e753 (diff) | |
download | MultiMC-f8650e3965582a57c3d0ccb5f234e6229051b16a.tar MultiMC-f8650e3965582a57c3d0ccb5f234e6229051b16a.tar.gz MultiMC-f8650e3965582a57c3d0ccb5f234e6229051b16a.tar.lz MultiMC-f8650e3965582a57c3d0ccb5f234e6229051b16a.tar.xz MultiMC-f8650e3965582a57c3d0ccb5f234e6229051b16a.zip |
NOISSUE eliminate ProgressProvider
Diffstat (limited to 'logic/tasks/ProgressProvider.h')
-rw-r--r-- | logic/tasks/ProgressProvider.h | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/logic/tasks/ProgressProvider.h b/logic/tasks/ProgressProvider.h deleted file mode 100644 index 57bfd5c8..00000000 --- a/logic/tasks/ProgressProvider.h +++ /dev/null @@ -1,41 +0,0 @@ -/* Copyright 2013-2015 MultiMC Contributors - * - * 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 <QObject> - -class ProgressProvider : public QObject -{ - Q_OBJECT -protected: - explicit ProgressProvider(QObject *parent = 0) : QObject(parent) - { - } -signals: - void started(); - void progress(qint64 current, qint64 total); - void succeeded(); - void failed(QString reason); - void status(QString status); - -public: - virtual ~ProgressProvider() {} - virtual bool isRunning() const = 0; -public -slots: - virtual void start() = 0; - virtual void abort() = 0; -}; |