mirror of
https://github.com/OPM/ResInsight.git
synced 2024-12-28 18:01:08 -06:00
Use enum instead of string
This commit is contained in:
parent
82e0866f00
commit
a78f8f8982
@ -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,
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user