mirror of
https://github.com/YACReader/yacreader
synced 2025-05-25 18:00:46 -04:00
22 lines
444 B
C++
22 lines
444 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);
|
|
|
|
bool openComicInThirdPartyApp(const QString &command,
|
|
const QString &path);
|
|
|
|
}
|
|
|
|
#endif // LIBRARYCOMICOPENER_H
|