diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-27 16:50:20 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-27 16:50:20 +0100 |
commit | ecc5761fa78ccb57db958467c3fc999aceadd409 (patch) | |
tree | 8e5f24133473de3f122d59262727a9f0a3a806c9 /src/crepe/Proxy.hpp | |
parent | e0b1ddae296037376948a4c6f200d89e6d1ba81e (diff) |
fix valuebroker/proxy system
Diffstat (limited to 'src/crepe/Proxy.hpp')
-rw-r--r-- | src/crepe/Proxy.hpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/crepe/Proxy.hpp b/src/crepe/Proxy.hpp deleted file mode 100644 index 7f23716..0000000 --- a/src/crepe/Proxy.hpp +++ /dev/null @@ -1,19 +0,0 @@ -#pragma once - -#include "Proxy.h" - -namespace crepe { - -template <typename T> -Proxy<T> & Proxy<T>::operator = (const T & val) { - this->val->set(val); - return *this; -} - -template <typename T> -Proxy<T>::operator const T & () const { - return this->val->get(); -} - -} - |