]> git.sesse.net Git - kdenlive/blob - src/projecttree/abstractclipjob.cpp
58dd94840456302b48b56ec772314b60fda2c588
[kdenlive] / src / projecttree / abstractclipjob.cpp
1 /***************************************************************************
2  *                                                                         *
3  *   Copyright (C) 2011 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
19  ***************************************************************************/
20
21 #include "abstractclipjob.h"
22 #include "kdenlivesettings.h"
23 #include "kdenlivedoc.h"
24
25 #include <KDebug>
26 #include <KLocale>
27
28
29 AbstractClipJob::AbstractClipJob(JOBTYPE type, CLIPTYPE cType, const QString &id, QStringList) :
30         QObject(),
31         clipType(cType),
32         jobType(type),
33         m_clipId(id)
34 {
35 }
36
37 AbstractClipJob::~AbstractClipJob()
38 {
39 }
40
41 const QString AbstractClipJob::clipId() const
42 {
43     return m_clipId;
44 }
45
46 QProcess *AbstractClipJob::startJob(bool *ok)
47 {
48     return NULL;
49 }
50
51 const QString AbstractClipJob::destination() const
52 {
53     return QString();
54 }
55
56 stringMap AbstractClipJob::cancelProperties()
57 {
58     return QMap <QString, QString>();
59 }
60