mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 23:01:44 +01:00
16 lines
250 B
Cap'n Proto
16 lines
250 B
Cap'n Proto
@0xf463d204f5208b43;
|
|
$import "/capnp/c++.capnp".namespace("UnitTest4");
|
|
|
|
interface Node {
|
|
getInfo @0 () -> Info;
|
|
}
|
|
|
|
struct Info {
|
|
node @0 :Node;
|
|
classes @1 :Classes;
|
|
}
|
|
|
|
struct Classes {
|
|
i1 @0 :import "UnitTest4b.capnp".I1.Classes;
|
|
i2 @1: Void;
|
|
} |