diff options
Diffstat (limited to 'tracker-pt/module/module.hpp')
-rw-r--r-- | tracker-pt/module/module.hpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tracker-pt/module/module.hpp b/tracker-pt/module/module.hpp new file mode 100644 index 00000000..4a2cb919 --- /dev/null +++ b/tracker-pt/module/module.hpp @@ -0,0 +1,18 @@ +#pragma once + +#include "api/plugin-api.hpp" +#include <QtGlobal> +#include <QIcon> + +namespace pt_module +{ + +class Q_DECL_EXPORT metadata_pt : public Metadata +{ + Q_OBJECT + + QString name(); + QIcon icon(); +}; + +} // ns pt_module |