aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/CommandLineOptions/UninstallOption/uninstalloption.h
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2018-12-30 11:45:55 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2018-12-30 11:45:55 +0000
commit4d56c7460d9854b1cedafd201b14b5083f3df87c (patch)
treeacc5be95bac6f0a88c15d0c1892e058fbf45d8ef /src/plugins/CommandLineOptions/UninstallOption/uninstalloption.h
parentba892226f0e7dab33f435faca14f48725fddc9d1 (diff)
downloadqmmp-4d56c7460d9854b1cedafd201b14b5083f3df87c.tar.gz
qmmp-4d56c7460d9854b1cedafd201b14b5083f3df87c.tar.bz2
qmmp-4d56c7460d9854b1cedafd201b14b5083f3df87c.zip
removed uninstall plugin
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@8539 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/CommandLineOptions/UninstallOption/uninstalloption.h')
-rw-r--r--src/plugins/CommandLineOptions/UninstallOption/uninstalloption.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/plugins/CommandLineOptions/UninstallOption/uninstalloption.h b/src/plugins/CommandLineOptions/UninstallOption/uninstalloption.h
deleted file mode 100644
index b186d3885..000000000
--- a/src/plugins/CommandLineOptions/UninstallOption/uninstalloption.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/***************************************************************************
- * Copyright (C) 2014-2017 by Ilya Kotov *
- * forkotov02@ya.ru *
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- * *
- * This program is distributed in the hope that it will be useful, *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
- * GNU General Public License for more details. *
- * *
- * You should have received a copy of the GNU General Public License *
- * along with this program; if not, write to the *
- * Free Software Foundation, Inc., *
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
- ***************************************************************************/
-
-#ifndef STATUSOPTION_H
-#define STATUSOPTION_H
-
-#include <QString>
-#include <QObject>
-#include <QStringList>
-#include <qmmpui/commandlineoption.h>
-#include <qmmpui/commandlinemanager.h>
-
-/**
- @author Ilya Kotov <forkotov02@ya.ru>
-*/
-class UninstallOption : public QObject, public CommandLineOption
-{
-Q_OBJECT
-Q_PLUGIN_METADATA(IID "org.qmmp.qmmpui.CommandLineOptionInterface.1.0")
-Q_INTERFACES(CommandLineOption)
-public:
- virtual CommandLineProperties properties() const;
- virtual bool identify(const QString& opt_str) const;
- virtual QString executeCommand(const QString& opt_str, const QStringList &args);
- virtual QString translation() const;
-};
-
-#endif