mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Move GrpcInterface into top level
This commit is contained in:
46
GrpcInterface/GrpcProtos/Definitions.proto
Normal file
46
GrpcInterface/GrpcProtos/Definitions.proto
Normal file
@@ -0,0 +1,46 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package rips;
|
||||
|
||||
message Empty
|
||||
{
|
||||
}
|
||||
|
||||
message ClientToServerStreamReply
|
||||
{
|
||||
int64 accepted_value_count = 1;
|
||||
}
|
||||
|
||||
message Vec3i {
|
||||
int32 i = 1;
|
||||
int32 j = 2;
|
||||
int32 k = 3;
|
||||
}
|
||||
|
||||
message Vec3d
|
||||
{
|
||||
double x = 1;
|
||||
double y = 2;
|
||||
double z = 3;
|
||||
}
|
||||
|
||||
message CellCenters
|
||||
{
|
||||
repeated Vec3d centers = 1;
|
||||
}
|
||||
|
||||
message CellCorners {
|
||||
Vec3d c0 = 1;
|
||||
Vec3d c1 = 2;
|
||||
Vec3d c2 = 3;
|
||||
Vec3d c3 = 4;
|
||||
Vec3d c4 = 5;
|
||||
Vec3d c5 = 6;
|
||||
Vec3d c6 = 7;
|
||||
Vec3d c7 = 8;
|
||||
}
|
||||
|
||||
message CellCornersArray
|
||||
{
|
||||
repeated CellCorners cells = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user