Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
arts/tests/value.idl

19 řádky
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;
};