mirror of
https://github.com/YACReader/yacreader
synced 2025-07-18 21:14:33 -04:00
ComicQueryResultProcessor: fix a typo in the class name
This commit is contained in:
32
YACReaderLibrary/db/comic_query_result_processor.h
Normal file
32
YACReaderLibrary/db/comic_query_result_processor.h
Normal file
@ -0,0 +1,32 @@
|
||||
#ifndef COMIC_QUERY_RESULT_PROCESSOR_H
|
||||
#define COMIC_QUERY_RESULT_PROCESSOR_H
|
||||
|
||||
#include <QtCore>
|
||||
#include <QSqlQuery>
|
||||
|
||||
#include "yacreader_global.h"
|
||||
#include "concurrent_queue.h"
|
||||
|
||||
class ComicItem;
|
||||
|
||||
namespace YACReader {
|
||||
|
||||
class ComicQueryResultProcessor : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
ComicQueryResultProcessor();
|
||||
|
||||
public slots:
|
||||
void createModelData(const SearchModifiers modifier, const QString &filter, const QString &databasePath);
|
||||
signals:
|
||||
void newData(QList<ComicItem *> *, const QString &);
|
||||
|
||||
private:
|
||||
ConcurrentQueue querySearchQueue;
|
||||
|
||||
QList<ComicItem *> *modelData(QSqlQuery &sqlquery);
|
||||
};
|
||||
};
|
||||
|
||||
#endif // COMIC_QUERY_RESULT_PROCESSOR_H
|
Reference in New Issue
Block a user