mirror of
https://github.com/capnproto/pycapnp.git
synced 2025-03-04 16:35:04 +01:00
17 lines
442 B
Cap'n Proto
17 lines
442 B
Cap'n Proto
@0xfb9a160831eee9bb;
|
|
|
|
struct AnnotationStruct {
|
|
test @0: Int32;
|
|
}
|
|
|
|
annotation test1(*): Text;
|
|
annotation test2(*): AnnotationStruct;
|
|
annotation test3(*): List(AnnotationStruct);
|
|
annotation test4(*): List(UInt16);
|
|
|
|
$test1("TestFile");
|
|
|
|
struct TestAnnotationOne $test1("Test") { }
|
|
struct TestAnnotationTwo $test2(test = 100) { }
|
|
struct TestAnnotationThree $test3([(test=100), (test=101)]) { }
|
|
struct TestAnnotationFour $test4([200, 201]) { }
|