21 lines
242 B
C
21 lines
242 B
C
|
#ifndef THEMEMANAGER_H
|
||
|
#define THEMEMANAGER_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class AppTheme {
|
||
|
|
||
|
};
|
||
|
|
||
|
class ThemeManager : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit ThemeManager(QObject *parent = nullptr);
|
||
|
|
||
|
signals:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // THEMEMANAGER_H
|