mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-10 00:04:48 -07:00
21 lines
601 B
C++
21 lines
601 B
C++
#ifndef COCKATRICE_INTERFACE_CARD_DATABASE_PATH_PROVIDER_H
|
|
#define COCKATRICE_INTERFACE_CARD_DATABASE_PATH_PROVIDER_H
|
|
#include <QObject>
|
|
|
|
class ICardDatabasePathProvider : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
virtual ~ICardDatabasePathProvider() = default;
|
|
|
|
virtual QString getCardDatabasePath() const = 0;
|
|
virtual QString getCustomCardDatabasePath() const = 0;
|
|
virtual QString getTokenDatabasePath() const = 0;
|
|
virtual QString getSpoilerCardDatabasePath() const = 0;
|
|
|
|
signals:
|
|
void cardDatabasePathChanged();
|
|
};
|
|
|
|
#endif // COCKATRICE_INTERFACE_CARD_DATABASE_PATH_PROVIDER_H
|