1 /***************************************************************************
2 * Copyright (C) 2008 by Ely Levy <elylevy@cs.huji.ac.il> *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 ***************************************************************************/
9 #include "generator_mobi.h"
11 #include "converter.h"
13 #include <kaboutdata.h>
15 static KAboutData
createAboutData()
20 ki18n("Mobipocket Backend"),
22 ki18n("A mobipocket backend"),
23 KAboutData::License_GPL
,
24 ki18n("© 2008-2009 Jakub Stachowski")
26 aboutData
.addAuthor(ki18n("Jakub Stachowski"), KLocalizedString(),
32 OKULAR_EXPORT_PLUGIN( MobiGenerator
, createAboutData() )
34 MobiGenerator::MobiGenerator( QObject
*parent
, const QVariantList
&args
)
35 : Okular::TextDocumentGenerator( new Mobi::Converter
, parent
, args
)