@@ -162,7 +162,7 @@ namespace RESQML2_NS
162162 *
163163 * @returns The xyz point count of the patch at position @p patchIndex.
164164 */
165- DLL_IMPORT_OR_EXPORT virtual uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const = 0;
165+ DLL_IMPORT_OR_EXPORT virtual uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const = 0;
166166
167167 /* *
168168 * Get the xyz point count of all patches of this representation.
@@ -184,7 +184,7 @@ namespace RESQML2_NS
184184 * dimension. It must be preallocated with a size of <tt>3 *
185185 * getXyzPointCountOfPatch(patchIndex)</tt>.
186186 */
187- DLL_IMPORT_OR_EXPORT virtual void getXyzPointsOfPatch (unsigned int patchIndex, double * xyzPoints) const = 0;
187+ DLL_IMPORT_OR_EXPORT virtual void getXyzPointsOfPatch (uint64_t patchIndex, double * xyzPoints) const = 0;
188188
189189 /* *
190190 * @brief Gets all the xyz points of a particular patch of this representation. xyz points are given in
@@ -198,7 +198,7 @@ namespace RESQML2_NS
198198 * dimension. It must be preallocated with a size of <tt>3 *
199199 * getXyzPointCountOfPatch(patchIndex)</tt>.
200200 */
201- DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatchInGlobalCrs (unsigned int patchIndex, double * xyzPoints) const ;
201+ DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatchInGlobalCrs (uint64_t patchIndex, double * xyzPoints) const ;
202202
203203 /* *
204204 * @brief Gets all the xyz points of all patches of this representation. xyz points are given in the
@@ -248,7 +248,7 @@ namespace RESQML2_NS
248248 * @returns Null if no seismic information have been provided for the patch at position @p
249249 * patchIndex. Else, its seismic support.
250250 */
251- DLL_IMPORT_OR_EXPORT AbstractRepresentation* getSeismicSupportOfPatch (const unsigned int & patchIndex) const ;
251+ DLL_IMPORT_OR_EXPORT AbstractRepresentation* getSeismicSupportOfPatch (uint64_t patchIndex) const ;
252252
253253 /* *
254254 * Gets all seismic supports of the current geometry of this representation (that is to say the
@@ -299,7 +299,7 @@ namespace RESQML2_NS
299299 * values. It must be already opened for writing and won't be
300300 * closed in this method.
301301 */
302- DLL_IMPORT_OR_EXPORT void addSeismic3dCoordinatesToPatch (unsigned int patchIndex, double * inlines, double * crosslines, uint64_t pointCount,
302+ DLL_IMPORT_OR_EXPORT void addSeismic3dCoordinatesToPatch (uint64_t patchIndex, double * inlines, double * crosslines, uint64_t pointCount,
303303 RESQML2_NS::AbstractRepresentation* seismicSupport, EML2_NS::AbstractHdfProxy* proxy);
304304
305305 /* *
@@ -320,7 +320,7 @@ namespace RESQML2_NS
320320 * @param countCrossline The crossline count.
321321 * @param [in] seismicSupport The representation of the seismic line.
322322 */
323- DLL_IMPORT_OR_EXPORT void addSeismic3dCoordinatesToPatch (unsigned int patchIndex, double startInline, double incrInline, unsigned int countInline,
323+ DLL_IMPORT_OR_EXPORT void addSeismic3dCoordinatesToPatch (uint64_t patchIndex, double startInline, double incrInline, unsigned int countInline,
324324 double startCrossline, double incrCrossline, unsigned int countCrossline,
325325 RESQML2_NS::AbstractRepresentation* seismicSupport);
326326
@@ -342,7 +342,7 @@ namespace RESQML2_NS
342342 * must be already opened for writing and won't be closed in
343343 * this method.
344344 */
345- DLL_IMPORT_OR_EXPORT void addSeismic2dCoordinatesToPatch (unsigned int patchIndex, double * lineAbscissa,
345+ DLL_IMPORT_OR_EXPORT void addSeismic2dCoordinatesToPatch (uint64_t patchIndex, double * lineAbscissa,
346346 RESQML2_NS::AbstractRepresentation * seismicSupport, EML2_NS::AbstractHdfProxy * proxy);
347347
348348 /* *
@@ -356,7 +356,7 @@ namespace RESQML2_NS
356356 * @param [out] values The array where the abscissa are going to be stored. The count of
357357 * this array must be equal to <tt>getXyzPointCountOfPatch(patchIndex)</tt>.
358358 */
359- DLL_IMPORT_OR_EXPORT void getSeismicLineAbscissaOfPointsOfPatch (unsigned int patchIndex, double * values) const ;
359+ DLL_IMPORT_OR_EXPORT void getSeismicLineAbscissaOfPointsOfPatch (uint64_t patchIndex, double * values) const ;
360360
361361 /* *
362362 * Gets all the inline coordinates of the points of a specific patch related to seismic lattice.
@@ -370,7 +370,7 @@ namespace RESQML2_NS
370370 * count of this array must be equal to
371371 * <tt>getXyzPointCountOfPatch(patchIndex)</tt>.
372372 */
373- DLL_IMPORT_OR_EXPORT void getInlinesOfPointsOfPatch (unsigned int patchIndex, double * values) const ;
373+ DLL_IMPORT_OR_EXPORT void getInlinesOfPointsOfPatch (uint64_t patchIndex, double * values) const ;
374374
375375 /* *
376376 * Gets all the crossline coordinates of the points of a specific patch related to seismic
@@ -385,7 +385,7 @@ namespace RESQML2_NS
385385 * count of this array must be equal to
386386 * <tt>getXyzPointCountOfPatch(patchIndex)</tt>.
387387 */
388- DLL_IMPORT_OR_EXPORT void getCrosslinesOfPointsOfPatch (unsigned int patchIndex, double * values) const ;
388+ DLL_IMPORT_OR_EXPORT void getCrosslinesOfPointsOfPatch (uint64_t patchIndex, double * values) const ;
389389
390390 /* * The standard XML tag without XML namespace for serializing this data object */
391391 static constexpr char const * XML_TAG = " AbstractRepresentation" ;
@@ -505,7 +505,7 @@ namespace RESQML2_NS
505505 *
506506 * @returns Null if it fails, else the seismic 3D coordinates.
507507 */
508- gsoap_resqml2_0_1::resqml20__Seismic3dCoordinates* getSeismic3dCoordinates2_0_1 (unsigned int patchIndex) const ;
508+ gsoap_resqml2_0_1::resqml20__Seismic3dCoordinates* getSeismic3dCoordinates2_0_1 (uint64_t patchIndex) const ;
509509
510510 /* *
511511 * Gets seismic 3D coordinates
@@ -514,6 +514,6 @@ namespace RESQML2_NS
514514 *
515515 * @returns Null if it fails, else the seismic 3D coordinates.
516516 */
517- gsoap_eml2_3::resqml22__Seismic3dCoordinates* getSeismic3dCoordinates2_2 (unsigned int patchIndex) const ;
517+ gsoap_eml2_3::resqml22__Seismic3dCoordinates* getSeismic3dCoordinates2_2 (uint64_t patchIndex) const ;
518518 };
519519}
0 commit comments