Fesapi 2.9.0.1
This project provides C++ classes which allow an easy access in import and export to the Energistics standards.
Loading...
Searching...
No Matches
LocalTime3dCrs.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 "AbstractLocal3dCrs.h"
22
23namespace RESQML2_NS
24{
31 {
32 public:
33
39 DLL_IMPORT_OR_EXPORT LocalTime3dCrs(gsoap_resqml2_0_1::eml20__DataObjectReference* partialObject) : AbstractLocal3dCrs(partialObject) {}
40
42 virtual ~LocalTime3dCrs() = default;
43
49 DLL_IMPORT_OR_EXPORT virtual gsoap_resqml2_0_1::eml20__TimeUom getUnit() const = 0;
50
56 DLL_IMPORT_OR_EXPORT virtual std::string getUnitAsString() const = 0;
57
59 DLL_IMPORT_OR_EXPORT static constexpr char const* XML_TAG = "LocalTime3dCrs";
60
61 DLL_IMPORT_OR_EXPORT virtual std::string getXmlTag() const final { return XML_TAG; }
62
63 protected :
64
66
72 LocalTime3dCrs(gsoap_resqml2_0_1::_resqml20__LocalTime3dCrs* fromGsoap) : AbstractLocal3dCrs(fromGsoap) {}
73 };
74}
Proxy class for an abstract local 3D coordinate reference system (CRS).
Definition AbstractLocal3dCrs.h:27
Defines a local time coordinate system. The geometrical origin and location are defined by the elemen...
Definition LocalTime3dCrs.h:31
virtual ~LocalTime3dCrs()=default
virtual std::string getUnitAsString() const =0
virtual gsoap_resqml2_0_1::eml20__TimeUom getUnit() const =0
LocalTime3dCrs(gsoap_resqml2_0_1::eml20__DataObjectReference *partialObject)
Definition LocalTime3dCrs.h:39