Qt ForkAwesome 0.1.0
Library that bundles ForkAwesome for use within Qt applications
iconfwd.h
Go to the documentation of this file.
1#ifndef QT_FORK_AWESOME_ICONFWD
2#define QT_FORK_AWESOME_ICONFWD
3
4#include <QChar>
5
6#include <type_traits>
7
8namespace QtForkAwesome {
9
10using IconBaseType = std::remove_reference_t<decltype(QChar().unicode())>;
11enum class Icon : IconBaseType;
12
13} // namespace QtForkAwesome
14
15#endif // QT_FORK_AWESOME_ICONFWD
Contains classes provided by the QtForkAwesome library.
Definition: renderer.h:19
Icon
The Icon enum specifies a ForkAwesome icon for calling QtForkAwesome::Renderer::render().
Definition: icon.h:11
std::remove_reference_t< decltype(QChar().unicode())> IconBaseType
Definition: iconfwd.h:10