MOAB: Mesh Oriented datABase  (version 5.4.1)
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.
int num_nodes
 The number of nodes per entity - not used for nodes and sets.

Detailed Description

Definition at line 84 of file WriteHDF5.hpp.


Constructor & Destructor Documentation

virtual moab::WriteHDF5::ExportType::~ExportType ( ) [inline, virtual]

Definition at line 91 of file WriteHDF5.hpp.

{}

Member Function Documentation

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

Definition at line 97 of file WriteHDF5.hpp.

References num_nodes, and type.

        {
            return t.type != type || t.num_nodes != num_nodes;
        }
bool moab::WriteHDF5::ExportType::operator< ( const ExportType t) const [inline]

Reimplemented in moab::WriteHDF5::ExportSet.

Definition at line 101 of file WriteHDF5.hpp.

References num_nodes, and type.

        {
            return type < t.type || ( type == t.type && num_nodes < t.num_nodes );
        }
bool moab::WriteHDF5::ExportType::operator== ( const ExportType t) const [inline]

Reimplemented in moab::WriteHDF5::ExportSet.

Definition at line 93 of file WriteHDF5.hpp.

References num_nodes, and type.

        {
            return t.type == type && t.num_nodes == num_nodes;
        }

Member Data Documentation

List of all members.


The documentation for this struct was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines