Mesh Oriented datABase  (version 5.5.1)
An array-based unstructured mesh library
moab::WriteHDF5::ExportType Struct Reference

#include <WriteHDF5.hpp>

+ Inheritance diagram for moab::WriteHDF5::ExportType:
+ Collaboration diagram for moab::WriteHDF5::ExportType:

Public Member Functions

virtual ~ExportType ()
 
bool operator== (const ExportType &t) const
 
bool operator!= (const ExportType &t) const
 
bool operator< (const ExportType &t) const
 

Public Attributes

EntityType type
 The type of the entities in the range. More...
 
int num_nodes
 The number of nodes per entity - not used for nodes and sets. More...
 

Detailed Description

Definition at line 84 of file WriteHDF5.hpp.

Constructor & Destructor Documentation

◆ ~ExportType()

virtual moab::WriteHDF5::ExportType::~ExportType ( )
inlinevirtual

Definition at line 91 of file WriteHDF5.hpp.

91 {}

Member Function Documentation

◆ operator!=()

bool moab::WriteHDF5::ExportType::operator!= ( const ExportType t) const
inline

Definition at line 97 of file WriteHDF5.hpp.

98  {
99  return t.type != type || t.num_nodes != num_nodes;
100  }

References num_nodes, and type.

◆ operator<()

bool moab::WriteHDF5::ExportType::operator< ( const ExportType t) const
inline

Definition at line 101 of file WriteHDF5.hpp.

102  {
103  return type < t.type || ( type == t.type && num_nodes < t.num_nodes );
104  }

References num_nodes, and type.

◆ operator==()

bool moab::WriteHDF5::ExportType::operator== ( const ExportType t) const
inline

Definition at line 93 of file WriteHDF5.hpp.

94  {
95  return t.type == type && t.num_nodes == num_nodes;
96  }

References num_nodes, and type.

Member Data Documentation

◆ num_nodes

◆ type


The documentation for this struct was generated from the following file: