summaryrefslogtreecommitdiffhomepage
path: root/tracker-easy/module.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tracker-easy/module.cpp')
-rw-r--r--tracker-easy/module.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/tracker-easy/module.cpp b/tracker-easy/module.cpp
new file mode 100644
index 00000000..8fcfeae1
--- /dev/null
+++ b/tracker-easy/module.cpp
@@ -0,0 +1,15 @@
+#include "tracker-easy.h"
+#include "tracker-easy-dialog.h"
+#include "module.hpp"
+
+#include <memory>
+
+namespace EasyTracker
+{
+ QString Metadata::name() { return tr("Easy Tracker 1.1"); }
+ QIcon Metadata::icon() { return QIcon(":/Resources/easy-tracker-logo.png"); }
+
+}
+
+
+OPENTRACK_DECLARE_TRACKER(EasyTracker::Tracker, EasyTracker::Dialog, EasyTracker::Metadata)