超漢字アプリケーション開発用のProtocol Buffersコンパイラの開発
Revision | 5dc42f5f5e4accc672b56e0a894f053902477596 (tree) |
---|---|
Time | 2015-02-07 02:28:26 |
Author | ornse01 <ornse01@user...> |
Commiter | ornse01 |
add .proto file for testing.
@@ -0,0 +1,12 @@ | ||
1 | +message Rect { | |
2 | + optional int32 left = 1; | |
3 | + optional int32 top = 2; | |
4 | + optional int32 right = 3; | |
5 | + optional int32 bottom = 4; | |
6 | +} | |
7 | + | |
8 | +message Test { | |
9 | + optional Rect window_pos = 1; | |
10 | + optional int32 view_left = 2; | |
11 | + optional int32 view_top = 3; | |
12 | +} |