File indexing completed on 2024-04-14 04:43:59

0001 /*
0002    SPDX-FileCopyrightText: 2018 (c) Matthieu Gallien <matthieu_gallien@yahoo.fr>
0003 
0004    SPDX-License-Identifier: LGPL-3.0-or-later
0005  */
0006 
0007 #ifndef ELISAIMPORTAPPLICATION_H
0008 #define ELISAIMPORTAPPLICATION_H
0009 
0010 #include <QObject>
0011 
0012 class ElisaImportApplication : public QObject
0013 {
0014     Q_OBJECT
0015 public:
0016     explicit ElisaImportApplication(QObject *parent = nullptr);
0017 
0018 Q_SIGNALS:
0019 
0020 public Q_SLOTS:
0021 
0022     void indexingChanged();
0023 
0024 };
0025 
0026 #endif // ELISAIMPORTAPPLICATION_H