~ubuntu-branches/ubuntu/maverick/kdegraphics/maverick-proposed

« back to all changes in this revision

Viewing changes to libs/libkipi/libkipi/exportinterface.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas
  • Date: 2009-12-02 14:03:43 UTC
  • mfrom: (1.1.35 upstream)
  • Revision ID: james.westby@ubuntu.com-20091202140343-2732gbkj69g89arq
Tags: 4:4.3.80-0ubuntu1
* New upstream beta release:
  - Add build-depend on shared-desktop-ontologies for nepomuk integration
  - Bump .so versions for libkexiv, libkdcraw and libkipi
  - Update various .install files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ============================================================
 
2
 *
 
3
 * This file is a part of kipi-plugins project
 
4
 * http://www.kipi-plugins.org
 
5
 *
 
6
 * Date        : 2009-11-13
 
7
 * Description : export plugin
 
8
 *
 
9
 * Copyright (C) 2009 by Aleix Pol Gonzalez <aleixpol@kde.org>
 
10
 *
 
11
 * This program is free software; you can redistribute it
 
12
 * and/or modify it under the terms of the GNU General
 
13
 * Public License as published by the Free Software Foundation;
 
14
 * either version 2, or (at your option) any later version.
 
15
 *
 
16
 * This program is distributed in the hope that it will be useful,
 
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
19
 * GNU General Public License for more details.
 
20
 *
 
21
 * ============================================================ */
 
22
 
 
23
#ifndef EXPORTINTERFACE_H
 
24
#define EXPORTINTERFACE_H
 
25
 
 
26
// Qt includes
 
27
 
 
28
#include <QtPlugin>
 
29
 
 
30
// KDE includes
 
31
 
 
32
#include <KUrl>
 
33
 
 
34
// Local includes.
 
35
 
 
36
#include "libkipi_export.h"
 
37
#include "extension.h"
 
38
 
 
39
class KJob;
 
40
 
 
41
namespace KIPI
 
42
{
 
43
 
 
44
class LIBKIPI_EXPORT ExportInterface
 
45
{
 
46
public:
 
47
 
 
48
    virtual ~ExportInterface();
 
49
 
 
50
    virtual KJob* exportFiles(const QString& albumname)=0;
 
51
};
 
52
 
 
53
} // namespace KIPI
 
54
 
 
55
KIPI_DECLARE_EXTENSION_INTERFACE_NS(KIPI, ExportInterface, "org.kde.kipi.ExportPlugin")
 
56
Q_DECLARE_INTERFACE( KIPI::ExportInterface, "org.kde.kipi.ExportPlugin" )
 
57
 
 
58
#endif // EXPORTINTERFACE_H