OGS
GocadEnums.h
Go to the documentation of this file.
1
11#pragma once
12
13#include <string>
14
15namespace FileIO
16{
17namespace Gocad
18{
19enum class DataType
20{
22 VSET,
23 PLINE,
24 TSURF,
25 MODEL3D,
26 ALL
27};
28
30std::string dataType2String(DataType const t);
31
33std::string dataType2ShortString(DataType const t);
34
35} // namespace Gocad
36
37} // namespace FileIO
std::string dataType2String(DataType const t)
Given a Gocad DataType this returns the appropriate string.
std::string dataType2ShortString(DataType const t)
Given a Gocad DataType this returns the appropriate short form.