summaryrefslogtreecommitdiffstats
path: root/tests/value.idl
blob: ae5e15c886b18b4c88b48bf70fa976d26d18c1d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
interface FloatValue {
	attribute float value;
};

interface StringValue {
	attribute string value;
};

enum MyEnum { meIdle, meHelloWorld };

interface MyEnumValue {
	attribute MyEnum value;
};

interface FloatSender {
	void send(sequence<float> data);
	async out float stream outstream;
};