Add handling of DynamicObject

This commit is contained in:
Jason Paryani
2013-09-18 17:19:57 -07:00
parent a4cd266f58
commit 8c559cc8b1
4 changed files with 99 additions and 4 deletions

21
test/object.capnp Normal file
View File

@@ -0,0 +1,21 @@
@0x8186ddb142b58556;
struct Person {
id @0 :UInt32;
name @1 :Text;
}
struct Place {
id @0 :UInt32;
name @1 :Text;
}
struct Thing {
id @0 :UInt64;
value @1 :UInt64;
}
struct TestObject {
object @0 :Object;
}