Commit ecb95037 authored by Jesse Mapel's avatar Jesse Mapel
Browse files

Fixed protobuf version warning

parent b47aa73c
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
// Protocol buffer header descriptor for Isis3 Control Networks
//
// 2017-12-11 Kristin Berry - Separated header and point into separate files.
// 2018-06-13 Jesse Mapel - Added flag to indicate it is a protobuf 2 file

syntax="proto2";

// Protocol buffer header descriptor for Isis3 Control Networks
package Isis;

message ControlNetFileHeaderV0002 {
@@ -13,4 +17,3 @@ message ControlNetFileHeaderV0002 {
  optional string userName     = 6;
  repeated int32  pointMessageSizes = 7 [packed = true];
}
+5 −0
Original line number Diff line number Diff line
// Protocol buffer header descriptor for Isis3 Control Networks
//
// 2018-06-13 Jesse Mapel - Added flag to indicate it is a protobuf 2 file

syntax="proto2";

package Isis;

message ControlNetFileHeaderV0005 {
+3 −1
Original line number Diff line number Diff line
// Protocol buffer descriptor for ISIS3 ControlNet class hierarchy
//
// 2017-12-11 Kristin Berry - Separated top-level messages into different files
// 2018-06-13 Jesse Mapel - Added flag to indicate it is a protobuf 2 file

syntax="proto2";

package Isis;

@@ -132,4 +135,3 @@ message ControlNetFileProtoV0001 {

  optional PBNetCubes netcubes = 9;
}
+3 −0
Original line number Diff line number Diff line
// Protocol buffer descriptor for ISIS3 ControlNet class hierarchy
//
// 2017-12-11 Kristin Berry - Separated top-level messages into different files
// 2018-06-13 Jesse Mapel - Added flag to indicate it is a protobuf 2 file

syntax="proto2";

package Isis;

+8 −4
Original line number Diff line number Diff line
// Protocol buffer control point descriptor for Isis3 Control Networks
//
// 2011-06-07 Tracie Sucharski/Debbie Cook - Changed PointType
//                    Ground  ---->  Fixed
//                    Tie     ---->  Free
//
// 2017-12-11 Kristin Berry - Separated header and point into separate files.
// 2018-06-13 Jesse Mapel - Added flag to indicate it is a protobuf 2 file

syntax="proto2";

// Protocol buffer control point descriptor for Isis3 Control Networks
package Isis;

message ControlPointFileEntryV0002 {
Loading