Sign in
fuchsia
/
zircon
/
sandbox/braval/gpio
/
.
/
system
/
host
/
fidl
/
examples
/
interface-ordinals.fidl
blob: c5713b7277ace001a75b13ca5e3f87a03d862a2c [
file
] [
log
] [
blame
]
library interface_ordinals
;
interface
Foo
{
1
:
SomeMethod
();
2
:
SomeMethodWithAResponse
()
->
();
3
:
->
SomeEvent
(
status response
);
};
interface
Bar
{
4
:
DoIt
();
};
interface
FooAndBarWaitTheresMore
:
Foo
,
Bar
{
5
:
MoreMoreMore
();
};