Fesapi 2.3.0.0
This project provides C++ classes which allow an easy access in import and export to the Energistics standards.
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
42 DLL_IMPORT_OR_EXPORT unsigned int getKCellCount() const;
43
51 DLL_IMPORT_OR_EXPORT void setKCellCount(unsigned int kCount);
52
60 DLL_IMPORT_OR_EXPORT virtual gsoap_resqml2_0_1::resqml20__KDirection getKDirection() const = 0;
61
85 DLL_IMPORT_OR_EXPORT void setIntervalAssociationWithStratigraphicOrganizationInterpretation(int64_t* stratiUnitIndices, int64_t nullValue, RESQML2_NS::AbstractStratigraphicOrganizationInterpretation* stratiOrgInterp, EML2_NS::AbstractHdfProxy* hdfProxy = nullptr);
86
87 COMMON_NS::DataObjectReference getStratigraphicOrganizationInterpretationDor() const final;
88
97 DLL_IMPORT_OR_EXPORT bool hasIntervalStratigraphicUnitIndices() const;
98
115 DLL_IMPORT_OR_EXPORT int64_t getIntervalStratigraphicUnitIndices(int64_t * stratiUnitIndices);
116
128 DLL_IMPORT_OR_EXPORT gsoap_resqml2_0_1::resqml20__PillarShape getMostComplexPillarGeometry() const;
129
130 protected:
131
135 AbstractColumnLayerGridRepresentation(gsoap_resqml2_0_1::eml20__DataObjectReference* partialObject, bool withTruncatedPillars) :RESQML2_NS::AbstractGridRepresentation(partialObject, withTruncatedPillars) {}
136
140 AbstractColumnLayerGridRepresentation(bool withTruncatedPillars) : RESQML2_NS::AbstractGridRepresentation(withTruncatedPillars) {}
141
142 void loadTargetRelationships() final;
143
147 AbstractColumnLayerGridRepresentation(gsoap_resqml2_0_1::resqml20__AbstractColumnLayerGridRepresentation* fromGsoap, bool withTruncatedPillars) : RESQML2_NS::AbstractGridRepresentation(fromGsoap, withTruncatedPillars) {}
148 AbstractColumnLayerGridRepresentation(gsoap_resqml2_0_1::resqml20__AbstractTruncatedColumnLayerGridRepresentation* fromGsoap, bool withTruncatedPillars) : RESQML2_NS::AbstractGridRepresentation(fromGsoap, withTruncatedPillars) {}
149 AbstractColumnLayerGridRepresentation(gsoap_eml2_3::resqml22__AbstractColumnLayerGridRepresentation* fromGsoap, bool withTruncatedPillars) : RESQML2_NS::AbstractGridRepresentation(fromGsoap, withTruncatedPillars) {}
150 AbstractColumnLayerGridRepresentation(gsoap_eml2_3::resqml22__AbstractTruncatedColumnLayerGridRepresentation* fromGsoap, bool withTruncatedPillars) : RESQML2_NS::AbstractGridRepresentation(fromGsoap, withTruncatedPillars) {}
151 };
152}
Proxy class for an abstract column layer grid representation.
Definition: AbstractColumnLayerGridRepresentation.h:27
virtual gsoap_resqml2_0_1::resqml20__KDirection getKDirection() const =0
void setIntervalAssociationWithStratigraphicOrganizationInterpretation(int64_t *stratiUnitIndices, int64_t nullValue, resqml2::AbstractStratigraphicOrganizationInterpretation *stratiOrgInterp, eml2::AbstractHdfProxy *hdfProxy=nullptr)
common::DataObjectReference getStratigraphicOrganizationInterpretationDor() const final
Proxy class for an abstract grid representation.
Definition: AbstractGridRepresentation.h:27