1 /***************************************************************************
2 * Copyright (C) 2006 by Tobias Koenig <tokoe@kde.org> *
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 ***************************************************************************/
10 #include "generator_ooo.h"
12 #include "converter.h"
14 #include <kaboutdata.h>
17 static KAboutData
createAboutData()
22 ki18n( "OpenOffice Document Backend" ),
24 ki18n( "A renderer for OpenOffice text documents" ),
25 KAboutData::License_GPL
,
26 ki18n( "© 2006-2008 Tobias Koenig" )
28 aboutData
.addAuthor( ki18n( "Tobias Koenig" ), KLocalizedString(), "tokoe@kde.org" );
33 OKULAR_EXPORT_PLUGIN( KOOOGenerator
, createAboutData() )
35 KOOOGenerator::KOOOGenerator( QObject
*parent
, const QVariantList
&args
)
36 : Okular::TextDocumentGenerator( new OOO::Converter
, parent
, args
)