qtforkawesome/qtforkawesome/icon.h

19 lines
429 B
C
Raw Normal View History

2021-09-11 14:42:11 +02:00
#ifndef QT_FORK_AWESOME_ICON
#define QT_FORK_AWESOME_ICON
#include "./iconfwd.h"
namespace QtForkAwesome {
2021-09-13 18:24:22 +02:00
/*!
* \brief The Icon enum specifies a ForkAwesome icon for calling QtForkAwesome::Renderer::render().
*/
2021-09-11 14:42:11 +02:00
enum class Icon : IconBaseType {
Invalid, /**< invalid, used by QtForkAwesome::iconFromId() to indicate failure */
2021-09-11 14:42:11 +02:00
#include "private/icons.h"
};
} // namespace QtForkAwesome
#endif // QT_FORK_AWESOME_ICON