mirror of
https://github.com/YACReader/yacreader
synced 2025-07-20 14:04:40 -04:00
a?adido #include <typeinfo> (compilaci?n Linux)
This commit is contained in:
22
YACReaderLibrary/db_helper.h
Normal file
22
YACReaderLibrary/db_helper.h
Normal file
@ -0,0 +1,22 @@
|
||||
#ifndef DB_HELPER_H
|
||||
#define DB_HELPER_H
|
||||
|
||||
class QString;
|
||||
class LibraryItem;
|
||||
class ComicDB;
|
||||
#include <QMap>
|
||||
#include <QList>
|
||||
|
||||
class DBHelper
|
||||
{
|
||||
public:
|
||||
//server
|
||||
static QMap<QString,QString> getLibraries();
|
||||
static QList<LibraryItem *> getFolderContentFromLibrary(const QString & libraryName, qulonglong folderId);
|
||||
static QList<LibraryItem *> getFolderComicsFromLibrary(const QString & libraryName, qulonglong folderId);
|
||||
static qulonglong getParentFromComicFolderId(const QString & libraryName, qulonglong id);
|
||||
static ComicDB getComicInfo(const QString & libraryName, qulonglong id);
|
||||
static QString getFolderName(const QString & libraryName, qulonglong id);
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user