mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-01 19:13:55 -07:00
Move abstract/noop interfaces to libcockatrice_interfaces so they can be linked against independently.
Took 52 minutes
This commit is contained in:
parent
45ee5d8abc
commit
837804f336
21 changed files with 45 additions and 25 deletions
|
|
@ -0,0 +1,21 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue