• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

超漢字アプリケーション開発用のProtocol Buffersコンパイラの開発


Commit MetaInfo

Révision5dc42f5f5e4accc672b56e0a894f053902477596 (tree)
l'heure2015-02-07 02:28:26
Auteurornse01 <ornse01@user...>
Commiterornse01

Message de Log

add .proto file for testing.

Change Summary

Modification

--- /dev/null
+++ b/src/my_usecase_00.proto
@@ -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+}