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 #ifndef EPUBREADERPLUGIN_H 0008 #define EPUBREADERPLUGIN_H 0009 0010 #include <QQmlExtensionPlugin> 0011 0012 class EpubReaderPlugin : public QQmlExtensionPlugin 0013 { 0014 Q_OBJECT 0015 Q_PLUGIN_METADATA(IID "io.github.rschroll.EpubReader") 0016 0017 public: 0018 void registerTypes(const char *uri); 0019 }; 0020 0021 #endif // EPUBREADERPLUGIN_H