Fesapi 2.10.1.0
This project provides C++ classes which allow an easy access in import and export to the Energistics standards.
Loading...
Searching...
No Matches
AbstractColumnLayerGridRepresentation.h
1/*-----------------------------------------------------------------------
2Licensed to the Apache Software Foundation (ASF) under one
3or more contributor license agreements. See the NOTICE file
4distributed with this work for additional information
5regarding copyright ownership. The ASF licenses this file
6to you under the Apache License, Version 2.0 (the
7"License"; you may not use this file except in compliance
8with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12Unless required by applicable law or agreed to in writing,
13software distributed under the License is distributed on an
14"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15KIND, either express or implied. See the License for the
16specific language governing permissions and limitations
17under the License.
18-----------------------------------------------------------------------*/
19#pragma once
20
21#include "AbstractGridRepresentation.h"
22
23namespace RESQML2_NS
24{
26 class AbstractColumnLayerGridRepresentation : public RESQML2_NS::AbstractGridRepresentation
27 {
28 public:
29
32
41 DLL_IMPORT_OR_EXPORT uint64_t getKCellCount() const;
42
50 DLL_IMPORT_OR_EXPORT void setKCellCount(uint64_t kCount);
51
59 DLL_IMPORT_OR_EXPORT virtual gsoap_resqml2_0_1::resqml20__KDirection getKDirection() const = 0;
60
84 DLL_IMPORT_OR_EXPORT void setIntervalAssociationWithStratigraphicOrganizationInterpretation(int64_t const* stratiUnitIndices, int64_t nullValue, RESQML2_NS::AbstractStratigraphicOrganizationInterpretation* stratiOrgInterp, EML2_NS::AbstractHdfProxy* hdfProxy = nullptr);
85
86 COMMON_NS::DataObjectReference getStratigraphicOrganizationInterpretationDor() const final;
87
96 DLL_IMPORT_OR_EXPORT bool hasIntervalStratigraphicUnitIndices() const;
97
114 DLL_IMPORT_OR_EXPORT int64_t getIntervalStratigraphicUnitIndices(int64_t * stratiUnitIndices);
115
127 DLL_IMPORT_OR_EXPORT gsoap_resqml2_0_1::resqml20__PillarShape getMostComplexPillarGeometry() const;
128
129 protected:
130
134 AbstractColumnLayerGridRepresentation(gsoap_resqml2_0_1::eml20__DataObjectReference* partialObject, bool withTruncatedPillars) :RESQML2_NS::AbstractGridRepresentation(partialObject, withTruncatedPillars) {}
135
139 AbstractColumnLayerGridRepresentation(bool withTruncatedPillars) : RESQML2_NS::AbstractGridRepresentation(withTruncatedPillars) {}
140
141 void loadTargetRelationships() final;
142
146 AbstractColumnLayerGridRepresentation(gsoap_resqml2_0_1::resqml20__AbstractColumnLayerGridRepresentation* fromGsoap, bool withTruncatedPillars) : RESQML2_NS::AbstractGridRepresentation(fromGsoap, withTruncatedPillars) {}
147 AbstractColumnLayerGridRepresentation(gsoap_resqml2_0_1::resqml20__AbstractTruncatedColumnLayerGridRepresentation* fromGsoap, bool withTruncatedPillars) : RESQML2_NS::AbstractGridRepresentation(fromGsoap, withTruncatedPillars) {}
148 AbstractColumnLayerGridRepresentation(gsoap_eml2_3::resqml22__AbstractColumnLayerGridRepresentation* fromGsoap, bool withTruncatedPillars) : RESQML2_NS::AbstractGridRepresentation(fromGsoap, withTruncatedPillars) {}
149 AbstractColumnLayerGridRepresentation(gsoap_eml2_3::resqml22__AbstractTruncatedColumnLayerGridRepresentation* fromGsoap, bool withTruncatedPillars) : RESQML2_NS::AbstractGridRepresentation(fromGsoap, withTruncatedPillars) {}
150 };
151}
Proxy class for an abstract column layer grid representation.
Definition AbstractColumnLayerGridRepresentation.h:27
virtual gsoap_resqml2_0_1::resqml20__KDirection getKDirection() const =0
common::DataObjectReference getStratigraphicOrganizationInterpretationDor() const final
void setIntervalAssociationWithStratigraphicOrganizationInterpretation(int64_t const *stratiUnitIndices, int64_t nullValue, resqml2::AbstractStratigraphicOrganizationInterpretation *stratiOrgInterp, eml2::AbstractHdfProxy *hdfProxy=nullptr)
Proxy class for an abstract grid representation.
Definition AbstractGridRepresentation.h:27