mirror of
https://github.com/YACReader/yacreader
synced 2026-03-01 10:22:58 -05:00
13 lines
172 B
C
13 lines
172 B
C
#ifndef YACREADER_ICON_H
|
|
#define YACREADER_ICON_H
|
|
|
|
#include <QIcon>
|
|
#include <QSize>
|
|
|
|
struct YACReaderIcon {
|
|
QIcon icon;
|
|
QSize size;
|
|
};
|
|
|
|
#endif // YACREADER_ICON_H
|