Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
arts/tests/value.idl

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