Fesapi  2.0.0.0
This project provides C++ classes which allow an easy access in import and export to the Energistics standards.
IjkGridExplicitRepresentation.h
1 /*-----------------------------------------------------------------------
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"; you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9 
10  http://www.apache.org/licenses/LICENSE-2.0
11 
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18 -----------------------------------------------------------------------*/
19 #pragma once
20 
21 #include "../resqml2/IjkGridExplicitRepresentation.h"
22 
23 namespace RESQML2_2_NS
24 {
29  class IjkGridExplicitRepresentation final : public RESQML2_NS::IjkGridExplicitRepresentation
30  {
31  public:
32 
49  IjkGridExplicitRepresentation(COMMON_NS::DataObjectRepository * repo,
50  const std::string & guid, const std::string & title,
51  unsigned int iCount, unsigned int jCount, unsigned int kCount,
52  bool* kGaps = nullptr, EML2_NS::AbstractHdfProxy* proxy = nullptr) :
53  RESQML2_NS::IjkGridExplicitRepresentation(repo, guid, title, iCount, jCount, kCount, kGaps, proxy) {}
54 
71  IjkGridExplicitRepresentation(RESQML2_NS::AbstractFeatureInterpretation* interp,
72  const std::string & guid, const std::string & title,
73  unsigned int iCount, unsigned int jCount, unsigned int kCount,
74  bool* kGaps = nullptr, EML2_NS::AbstractHdfProxy* proxy = nullptr) :
75  RESQML2_NS::IjkGridExplicitRepresentation(interp, guid, title, iCount, jCount, kCount, kGaps, proxy) {}
76 
82  IjkGridExplicitRepresentation(gsoap_eml2_3::_resqml22__IjkGridRepresentation* fromGsoap) : RESQML2_NS::IjkGridExplicitRepresentation(fromGsoap) {}
83 
89  IjkGridExplicitRepresentation(gsoap_eml2_3::_resqml22__TruncatedIjkGridRepresentation* fromGsoap) : RESQML2_NS::IjkGridExplicitRepresentation(fromGsoap) {}
90 
94  virtual ~IjkGridExplicitRepresentation() = default;
95 
96  COMMON_NS::DataObjectReference getHdfProxyDor() const final;
97 
107  DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final;
108 
109  DLL_IMPORT_OR_EXPORT void setGeometryAsCoordinateLineNodes(
110  gsoap_resqml2_0_1::resqml20__PillarShape mostComplexPillarGeometry, gsoap_resqml2_0_1::resqml20__KDirection kDirectionKind, bool isRightHanded,
111  double * points, EML2_NS::AbstractHdfProxy* proxy = nullptr,
112  unsigned long splitCoordinateLineCount = 0, unsigned int * pillarOfCoordinateLine = nullptr,
113  unsigned int * splitCoordinateLineColumnCumulativeCount = nullptr, unsigned int * splitCoordinateLineColumns = nullptr,
114  char * definedPillars = nullptr, RESQML2_NS::AbstractLocal3dCrs * localCrs = nullptr) final;
115 
116  DLL_IMPORT_OR_EXPORT void setGeometryAsCoordinateLineNodesUsingExistingDatasets(
117  gsoap_resqml2_0_1::resqml20__PillarShape mostComplexPillarGeometry, gsoap_resqml2_0_1::resqml20__KDirection kDirectionKind, bool isRightHanded,
118  const std::string & points, EML2_NS::AbstractHdfProxy* proxy = nullptr,
119  unsigned long splitCoordinateLineCount = 0, const std::string & pillarOfCoordinateLine = "",
120  const std::string & splitCoordinateLineColumnCumulativeCount = "", const std::string & splitCoordinateLineColumns = "",
121  const std::string & definedPillars = "", RESQML2_NS::AbstractLocal3dCrs * localCrs = nullptr) final;
122 
126  DLL_IMPORT_OR_EXPORT static const char* XML_NS;
127 
131  DLL_IMPORT_OR_EXPORT std::string getXmlNamespace() const final { return XML_NS; }
132 
133  private:
134  EML2_NS::AbstractHdfProxy* getPointDatasetPath(std::string & datasetPathInExternalFile, unsigned long & splitCoordinateLineCount) const final;
135  };
136 }
Definition: IjkGridExplicitRepresentation.h:30
IjkGridExplicitRepresentation(gsoap_eml2_3::_resqml22__IjkGridRepresentation *fromGsoap)
Creates an instance of this class by wrapping a gsoap instance.
Definition: IjkGridExplicitRepresentation.h:82
IjkGridExplicitRepresentation(resqml2::AbstractFeatureInterpretation *interp, const std::string &guid, const std::string &title, unsigned int iCount, unsigned int jCount, unsigned int kCount, bool *kGaps=nullptr, eml2::AbstractHdfProxy *proxy=nullptr)
Constructor.
Definition: IjkGridExplicitRepresentation.h:71
IjkGridExplicitRepresentation(common::DataObjectRepository *repo, const std::string &guid, const std::string &title, unsigned int iCount, unsigned int jCount, unsigned int kCount, bool *kGaps=nullptr, eml2::AbstractHdfProxy *proxy=nullptr)
Constructor.
Definition: IjkGridExplicitRepresentation.h:49
common::DataObjectReference getHdfProxyDor() const final
Gets the data object reference of the HDF proxy which is used for storing the numerical values of thi...
IjkGridExplicitRepresentation(gsoap_eml2_3::_resqml22__TruncatedIjkGridRepresentation *fromGsoap)
Constructor.
Definition: IjkGridExplicitRepresentation.h:89
virtual ~IjkGridExplicitRepresentation()=default