mirror of
https://github.com/YACReader/yacreader
synced 2025-07-25 08:25:03 -04:00
Added comic vine API key input dialog, YACReader's api key will not longer be used. The user will be responsible for getting his/her own API key.
This commit is contained in:
@ -4,12 +4,14 @@
|
||||
#include "http_worker.h"
|
||||
|
||||
#include <QObject>
|
||||
#include <QSettings>
|
||||
|
||||
class ComicVineClient : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit ComicVineClient(QObject *parent = 0);
|
||||
~ComicVineClient();
|
||||
|
||||
signals:
|
||||
void searchResult(QString);
|
||||
@ -37,5 +39,8 @@ protected slots:
|
||||
void processVolumeComicsInfo(const QByteArray & data);
|
||||
void proccessComicDetailData(const QByteArray & data);
|
||||
|
||||
protected:
|
||||
QSettings * settings;
|
||||
|
||||
};
|
||||
#endif // COMIC_VINE_CLIENT_H
|
||||
|
Reference in New Issue
Block a user