aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/util/Proxy.h
blob: 65db04d93329a9b3e866eb28627847589d7abbbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once

#include "ValueBroker.h"

namespace crepe {

template <typename T>
class Proxy {
public:
	Proxy & operator = (const T &);
	operator const T & ();

public:
	Proxy(ValueBroker<T>);

private:
	ValueBroker<T> broker;
};

}

#include "Proxy.hpp"