mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00
17 lines
293 B
C++
17 lines
293 B
C++
#ifndef THEMEAPPICON_H
|
|
#define THEMEAPPICON_H
|
|
|
|
#include <QObject>
|
|
|
|
class ThemeAppIcon : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ThemeAppIcon(QObject *parent = 0);
|
|
~ThemeAppIcon();
|
|
|
|
static QPixmap getIcon(const QString iconName, const int size);
|
|
};
|
|
|
|
#endif // THEMEAPPICON_H
|