aboutsummaryrefslogtreecommitdiff
path: root/src/qmmpui/playlisttask.cpp
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2014-10-28 19:41:44 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2014-10-28 19:41:44 +0000
commitbc7ad688c646afd2a89e5c5ff58696f2df2c8605 (patch)
tree856d293aee2ba3e9d6467063b64a37b19d08a671 /src/qmmpui/playlisttask.cpp
parent9731b885956a4d4da2dd420c6017ea3be5da9654 (diff)
downloadqmmp-bc7ad688c646afd2a89e5c5ff58696f2df2c8605.tar.gz
qmmp-bc7ad688c646afd2a89e5c5ff58696f2df2c8605.tar.bz2
qmmp-bc7ad688c646afd2a89e5c5ff58696f2df2c8605.zip
added PlayListTask class
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@4600 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/playlisttask.cpp')
-rw-r--r--src/qmmpui/playlisttask.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/qmmpui/playlisttask.cpp b/src/qmmpui/playlisttask.cpp
new file mode 100644
index 000000000..fc23618e5
--- /dev/null
+++ b/src/qmmpui/playlisttask.cpp
@@ -0,0 +1,31 @@
+/***************************************************************************
+ * Copyright (C) 2014 by Ilya Kotov *
+ * forkotov02@hotmail.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. *
+ ***************************************************************************/
+
+#include "playlisttask_p.h"
+
+PlayListTask::PlayListTask(QObject *parent) :
+ QRunnable(parent)
+{
+}
+
+void PlayListTask::run()
+{
+
+}