#pragma once #include "ValueBroker.h" namespace crepe::util { template class Proxy { public: Proxy & operator = (const T &); operator const T & () const; public: Proxy(ValueBroker &); private: ValueBroker & broker; }; } #include "Proxy.hpp"