您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
arts/tests/value.idl

19 行
292 B

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;
};