From 9df087ede0b539ecbd2778236c7d1143362b384d Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Thu, 7 Nov 2024 18:57:04 +0100 Subject: check code standard --- src/crepe/util/Proxy.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/crepe/util/Proxy.h') diff --git a/src/crepe/util/Proxy.h b/src/crepe/util/Proxy.h index 65db04d..fbfed0c 100644 --- a/src/crepe/util/Proxy.h +++ b/src/crepe/util/Proxy.h @@ -4,10 +4,20 @@ namespace crepe { +/** + * \brief Utility wrapper for \c ValueBroker + * + * This class can be used to to wrap a ValueBroker instance so it behaves like + * a regular variable. + * + * \tparam T Type of the underlying variable + */ template class Proxy { public: + //! Set operator Proxy & operator = (const T &); + //! Get operator operator const T & (); public: -- cgit v1.2.3