aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/ProxyHandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/ProxyHandler.h')
-rw-r--r--src/crepe/ProxyHandler.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/crepe/ProxyHandler.h b/src/crepe/ProxyHandler.h
deleted file mode 100644
index ff2be70..0000000
--- a/src/crepe/ProxyHandler.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#pragma once
-
-namespace crepe {
-
-template <typename T>
-class ProxyHandler {
-public:
- virtual void set(const T &) = 0;
- virtual const T & get() = 0;
-};
-
-}
-