Changeset 13367 for branches/PersistenceOverhaul/HeuristicLab.Persistence/4.0/Protos/PersistenceMessages.proto
- Timestamp:
- 11/24/15 16:59:57 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Persistence/4.0/Protos/PersistenceMessages.proto
r13347 r13367 16 16 } 17 17 18 // valueboxes18 // scalar boxes 19 19 message BoolBox { 20 20 extend Box { … … 73 73 74 74 // array boxes 75 message ArrayBox {75 message BoolArrayBox { 76 76 extend Box { 77 required ArrayBox array = 120; 78 } 79 optional uint32 element_type_id = 1; 80 81 extensions 100 to max; 82 } 83 message BoolArrayBox { 84 extend ArrayBox { 85 required BoolArrayBox bool_array = 100; 77 required BoolArrayBox bool_array = 120; 86 78 } 87 79 repeated bool values = 1 [packed = true]; 88 80 } 89 81 message IntArrayBox { 90 extend ArrayBox {91 required IntArrayBox int_array = 1 01;82 extend Box { 83 required IntArrayBox int_array = 121; 92 84 } 93 85 repeated int32 values = 1 [packed = true];
Note: See TracChangeset
for help on using the changeset viewer.