1 /*************************************************************************** 2 * Copyright (C) 2004-2021 by Pere Constans 3 * constans@molspaces.com 4 * cb2Bib version 2.0.1. Licensed under the GNU GPL version 3. 5 * See the LICENSE file that comes with this distribution. 6 ***************************************************************************/ 7 #ifndef C2BEXPORT_H 8 #define C2BEXPORT_H 9 10 #include <QObject> 11 #include <QStringList> 12 13 14 class c2bExport : public QObject 15 { 16 17 Q_OBJECT 18 19 public: 20 explicit c2bExport(QObject* parento = 0); 21 ~c2bExport(); 22 23 struct export_data 24 { 25 QString bibtex_contents; 26 QString bibtex_fn; 27 QString documents_dir; 28 QString export_fn; 29 QStringList bibtex_keys; 30 bool copy_documents; 31 bool relative_dir; 32 }; 33 void exportEntries(const export_data& ed); 34 }; 35 36 #endif