Use enum instead of string

This commit is contained in:
Magne Sjaastad 2023-11-16 14:57:28 +01:00
parent 82e0866f00
commit a78f8f8982
2 changed files with 14 additions and 6 deletions

View File

@ -31,6 +31,7 @@ class RicSaveEclipseInputVisibleCellsUi : public caf::PdmObject
CAF_PDM_HEADER_INIT;
public:
// Values are exposed in gRPC .proto. Do not change without also changing .proto
enum ExportKeyword
{
FLUXNUM,

View File

@ -144,14 +144,21 @@ message ExportWellPathRequest
double mdStepSize = 2;
}
enum ExportVisibleCellsKeywordType
{
FLUXNUM = 0;
MULTNUM = 1;
ACTNUM = 2;
}
message ExportVisibleCellsRequest
{
int32 caseId = 1;
int32 viewId = 2;
string exportKeyword = 3;
int32 visibleActiveCellsValue = 4;
int32 hiddenActiveCellsValue = 5;
int32 inactiveCellsValue = 6;
int32 caseId = 1;
int32 viewId = 2;
ExportVisibleCellsKeywordType exportKeyword = 3;
int32 visibleActiveCellsValue = 4;
int32 hiddenActiveCellsValue = 5;
int32 inactiveCellsValue = 6;
}
enum ExportFolderType {