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