File indexing completed on 2025-01-26 04:24:56

0001 /* Copyright 2013 Robert Schroll
0002  *
0003  * This file is part of Beru and is distributed under the terms of
0004  * the GPL. See the file COPYING for full details.
0005  */
0006 
0007 #include "epubreaderplugin.h"
0008 #include "epubreader.h"
0009 #include "cbzreader.h"
0010 #include "pdfreader.h"
0011 #include <qqml.h>
0012 
0013 void EpubReaderPlugin::registerTypes(const char *uri)
0014 {
0015     qmlRegisterType<EpubReader>(uri, 1, 0, "EpubReader");
0016     qmlRegisterType<CBZReader>(uri, 1, 0, "CBZReader");
0017     qmlRegisterType<PDFReader>(uri, 1, 0, "PDFReader");
0018 }