mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
And send a new param `--readingListId` to tell YACReader that the comic is opened from a reading list.
19 lines
337 B
C++
19 lines
337 B
C++
#ifndef LIBRARYCOMICOPENER_H
|
|
#define LIBRARYCOMICOPENER_H
|
|
|
|
#include "yacreader_global.h"
|
|
|
|
class ComicDB;
|
|
class QString;
|
|
|
|
namespace YACReader {
|
|
|
|
bool openComic(const ComicDB &comic,
|
|
unsigned long long libraryId,
|
|
const QString &path,
|
|
OpenComicSource source);
|
|
|
|
}
|
|
|
|
#endif // LIBRARYCOMICOPENER_H
|