Use SettingsManager

This commit is contained in:
Basile Clément 2025-05-01 13:21:09 +02:00
parent af2370425f
commit f5080424a6
No known key found for this signature in database
2 changed files with 7 additions and 8 deletions

View file

@ -1,12 +1,14 @@
#ifndef CARD_COUNTER_SETTINGS_H
#define CARD_COUNTER_SETTINGS_H
#include "settings_manager.h"
#include <QObject>
class QSettings;
class QColor;
class CardCounterSettings : public QObject
class CardCounterSettings : public SettingsManager
{
Q_OBJECT
@ -22,9 +24,6 @@ public slots:
signals:
void colorChanged(int counterId, const QColor &color);
private:
QSettings *m_settings;
};
#endif // CARD_COUNTER_SETTINGS_H