1/*
2 * Copyright (C) 2010 Pau Garcia i Quiles <pgquiles@elpauer.org>
3 * Essentially a rip-off of code for Kamoso by:
4 * Copyright (C) 2008-2009 by Aleix Pol <aleixpol@kde.org>
5 * Copyright (C) 2008-2009 by Alex Fiestas <alex@eyeos.org>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 * Boston, MA 02110-1301, USA.
21*/
22
23#include "ksnapshotinfoshared.h"
24
25KSnapshotInfoShared::KSnapshotInfoShared(KIPIInterface* interface, const KUrl& url) : KIPI::ImageInfoShared(interface,url)
26{
27
28}
29
30void KSnapshotInfoShared::delAttributes(const QStringList& )
31{
32
33}
34
35void KSnapshotInfoShared::addAttributes(const QMap< QString, QVariant >& )
36{
37
38}
39
40void KSnapshotInfoShared::clearAttributes()
41{
42
43}
44
45QMap< QString, QVariant > KSnapshotInfoShared::attributes()
46{
47 return QMap<QString,QVariant>();
48}
49
50void KSnapshotInfoShared::setDescription(const QString& )
51{
52
53}
54
55QString KSnapshotInfoShared::description()
56{
57 return "Taken with KSnapshot";
58}
59