Fesapi  2.0.0.0
This project provides C++ classes which allow an easy access in import and export to the Energistics standards.
WellboreInterpretation.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 
20 #pragma once
21 
22 #include "AbstractFeatureInterpretation.h"
23 
24 namespace RESQML2_NS
25 {
26  class WellboreFeature;
27 
33  {
34  public:
35 
41  DLL_IMPORT_OR_EXPORT WellboreInterpretation(gsoap_resqml2_0_1::eml20__DataObjectReference* partialObject) :
42  AbstractFeatureInterpretation(partialObject)
43  {}
44 
47 
53  WellboreInterpretation(gsoap_resqml2_0_1::_resqml20__WellboreInterpretation* fromGsoap) : AbstractFeatureInterpretation(fromGsoap) {}
54 
60  WellboreInterpretation(gsoap_eml2_3::_resqml22__WellboreInterpretation* fromGsoap) : AbstractFeatureInterpretation(fromGsoap) {}
61 
65  virtual ~WellboreInterpretation() = default;
66 
72  virtual bool isDrilled() const = 0;
73 
79  DLL_IMPORT_OR_EXPORT std::vector<class WellboreTrajectoryRepresentation *> getWellboreTrajectoryRepresentationSet() const;
80 
82  DLL_IMPORT_OR_EXPORT static const char* XML_TAG;
83 
84  DLL_IMPORT_OR_EXPORT virtual std::string getXmlTag() const final { return XML_TAG; }
85  };
86 }
Proxy class for an abstract feature interpretation.
Definition: AbstractFeatureInterpretation.h:29
Contains the data describing an opinion of a borehole.This interpretation is relative to one particul...
Definition: WellboreInterpretation.h:33
WellboreInterpretation(gsoap_resqml2_0_1::eml20__DataObjectReference *partialObject)
Definition: WellboreInterpretation.h:41
WellboreInterpretation()
Definition: WellboreInterpretation.h:46
WellboreInterpretation(gsoap_resqml2_0_1::_resqml20__WellboreInterpretation *fromGsoap)
Definition: WellboreInterpretation.h:53
std::vector< class WellboreTrajectoryRepresentation * > getWellboreTrajectoryRepresentationSet() const
WellboreInterpretation(gsoap_eml2_3::_resqml22__WellboreInterpretation *fromGsoap)
Definition: WellboreInterpretation.h:60
virtual bool isDrilled() const =0
virtual std::string getXmlTag() const final
Definition: WellboreInterpretation.h:84
virtual ~WellboreInterpretation()=default
static const char * XML_TAG
Definition: WellboreInterpretation.h:82