SVN_SILENT made messages (.desktop file)
[kdegraphics.git] / okular / generators / mobipocket / generator_mobi.cpp
blob0e658f15ebaf206fae31f3bc5a3cc4f30adac335
1 /***************************************************************************
2 * Copyright (C) 2008 by Ely Levy <elylevy@cs.huji.ac.il> *
3 * *
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()
17 KAboutData aboutData(
18 "okular_mobi",
19 "okular_mobi",
20 ki18n("Mobipocket Backend"),
21 "0.1",
22 ki18n("A mobipocket backend"),
23 KAboutData::License_GPL,
24 ki18n("© 2008-2009 Jakub Stachowski")
26 aboutData.addAuthor(ki18n("Jakub Stachowski"), KLocalizedString(),
27 "qbast@go2.pl");
29 return aboutData;
32 OKULAR_EXPORT_PLUGIN( MobiGenerator, createAboutData() )
34 MobiGenerator::MobiGenerator( QObject *parent, const QVariantList &args )
35 : Okular::TextDocumentGenerator( new Mobi::Converter, parent, args )