Commit 835e8277 authored by Kristin Berry's avatar Kristin Berry Committed by Makayla Shepherd
Browse files

Removed ControlNetFileV0001.proto and replaced it with 2 separate v0001 proto...

Removed ControlNetFileV0001.proto and replaced it with 2 separate v0001 proto files for the cnet file and the log data
parent 06c944b7
Loading
Loading
Loading
Loading
+2 −16
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

package Isis;

@@ -131,19 +133,3 @@ message ControlNetFileProtoV0001 {
  optional PBNetCubes netcubes = 9;
}
message ControlNetLogDataProtoV0001 {
  message Point {
    message Measure {
      message DataEntry {
        required int32 dataType = 2;
        required double dataValue = 3;
      }

      repeated DataEntry loggedMeasureData = 2;
    }

    repeated Measure measures = 2;
  }

  repeated Point points = 1;
}
+22 −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

package Isis;

message ControlNetLogDataProtoV0001 {
  message Point {
    message Measure {
      message DataEntry {
        required int32 dataType = 2;
        required double dataValue = 3;
      }

      repeated DataEntry loggedMeasureData = 2;
    }

    repeated Measure measures = 2;
  }

  repeated Point points = 1;
}