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
WellboreMarkerSet.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 "../witsml2/WellboreObject.h"
22
23namespace WITSML2_1_NS
24{
26 {
27 public:
28
34 DLL_IMPORT_OR_EXPORT WellboreMarkerSet(gsoap_resqml2_0_1::eml20__DataObjectReference* partialObject) : WITSML2_NS::WellboreObject(partialObject) {}
35
41 const std::string & guid,
42 const std::string & title,
43 double mdBaseSample,
44 double mdTopSample,
45 gsoap_eml2_3::eml23__LengthUom mdUom);
46
50 WellboreMarkerSet(gsoap_eml2_3::witsml21__WellboreMarkerSet* fromGsoap) : WITSML2_NS::WellboreObject(fromGsoap) {}
51
56
57 COMMON_NS::DataObjectReference getWellboreDor() const final;
58 DLL_IMPORT_OR_EXPORT void setWellbore(WITSML2_NS::Wellbore* witsmlWellbore) final;
59
60 DLL_IMPORT_OR_EXPORT static constexpr char const* XML_TAG = "WellboreMarkerSet";
61 DLL_IMPORT_OR_EXPORT virtual std::string getXmlTag() const {return XML_TAG;}
62
66 DLL_IMPORT_OR_EXPORT static constexpr char const* XML_NS = "witsml21";
67
71 DLL_IMPORT_OR_EXPORT std::string getXmlNamespace() const final { return XML_NS; }
72 };
73}
A wellbore represents the path from surface to a unique bottomhole location.
Definition Wellbore.h:46
Definition WellboreObject.h:32
A wellbore represents the path from surface to a unique bottomhole location.
Definition Wellbore.h:29
Definition WellboreMarkerSet.h:26
common::DataObjectReference getWellboreDor() const final
~WellboreMarkerSet()
Definition WellboreMarkerSet.h:55
WellboreMarkerSet(WITSML2_NS::Wellbore *witsmlWellbore, const std::string &guid, const std::string &title, double mdBaseSample, double mdTopSample, gsoap_eml2_3::eml23__LengthUom mdUom)
std::string getXmlNamespace() const final
Definition WellboreMarkerSet.h:71
WellboreMarkerSet(gsoap_resqml2_0_1::eml20__DataObjectReference *partialObject)
Definition WellboreMarkerSet.h:34
WellboreMarkerSet(gsoap_eml2_3::witsml21__WellboreMarkerSet *fromGsoap)
Definition WellboreMarkerSet.h:50