summaryrefslogtreecommitdiffhomepage
path: root/main-window/tracking-mixin.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'main-window/tracking-mixin.hpp')
-rw-r--r--main-window/tracking-mixin.hpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/main-window/tracking-mixin.hpp b/main-window/tracking-mixin.hpp
deleted file mode 100644
index e48ca630..00000000
--- a/main-window/tracking-mixin.hpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#pragma once
-
-#include "mixins.hpp"
-
-#include "logic/work.hpp"
-
-#include <memory>
-
-namespace OTR_MIXIN_NS(tracking_mixin) {
-
-using work_ptr = std::shared_ptr<Work>;
-
-struct OTR_MAIN_EXPORT has_work {
- virtual explicit operator work_ptr() = 0;
- inline has_work() = default;
- virtual ~has_work();
-};
-
-}