diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-04-05 03:23:38 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-04-05 03:23:52 +0200 |
commit | c0165f8b48852a1aca782d606ba4f1ea48eee6ba (patch) | |
tree | 433441689808ca741889b078407bc49fade746de /tracker-wii/wii_module.hpp | |
parent | eb32a2ac02c6d1adcfeb0a1a5522f8aaea442489 (diff) |
modules: now use i18n
Diffstat (limited to 'tracker-wii/wii_module.hpp')
-rw-r--r-- | tracker-wii/wii_module.hpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tracker-wii/wii_module.hpp b/tracker-wii/wii_module.hpp new file mode 100644 index 00000000..34a8561d --- /dev/null +++ b/tracker-wii/wii_module.hpp @@ -0,0 +1,14 @@ +#pragma once + +#include "api/plugin-api.hpp" + +#include <QIcon> +#include <QtGlobal> + +class Q_DECL_EXPORT wii_metadata_pt : public Metadata +{ + Q_OBJECT + + QString name(); + QIcon icon(); +}; |