/** \file * * Standalone example for usage of the proxy type */ #include "ValueBroker.h" #include #include #include using namespace std; using namespace crepe; using namespace crepe::util; void test_ro_ref(const int & val) { } void test_rw_ref(int & val) { } void test_ro_val(int val) { } int main() { auto & cfg = api::Config::get_instance(); cfg.log.level = util::LogLevel::DEBUG; int real_value = 0; ValueBroker broker { real_value, [] (int & value, const int & target) { dbg_logf("set %s to %s", to_string(value).c_str(), to_string(target).c_str()); value = target; }, [] (int & value) -> const int & { dbg_logf("get %s", to_string(value).c_str()); return value; }, }; Proxy proxy { broker }; broker.set(54); proxy = 84; test_ro_ref(proxy); // this is allowed // test_rw_ref(proxy); // this should throw a compile error test_ro_val(proxy); return 0; }