diff options
author | Stéphane Lenclud <github@lenclud.com> | 2019-03-27 21:18:39 +0100 |
---|---|---|
committer | Stéphane Lenclud <github@lenclud.com> | 2019-04-12 21:04:35 +0200 |
commit | 85988a0e190788c1ee58debc8f07c8fa3375bf5b (patch) | |
tree | c4b9521f680f4fb981025cccd58992ccfb080c90 /tracker-points/module/module.hpp | |
parent | 7e21dd631a766155ee4d6a5b24fb05dd691cf39f (diff) |
Create Points Tracker based on original Point Tracker.
Diffstat (limited to 'tracker-points/module/module.hpp')
-rw-r--r-- | tracker-points/module/module.hpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tracker-points/module/module.hpp b/tracker-points/module/module.hpp new file mode 100644 index 00000000..0b3f12cf --- /dev/null +++ b/tracker-points/module/module.hpp @@ -0,0 +1,20 @@ +#pragma once + +#include "api/plugin-api.hpp" +#include <QIcon> +#include <QString> + +#include "compat/linkage-macros.hpp" + +namespace pt_module +{ + +class OTR_GENERIC_EXPORT metadata_pt : public Metadata +{ + Q_OBJECT + + QString name() override; + QIcon icon() override; +}; + +} // ns pt_module |