moab
moab::WriteHDF5::ExportType Struct Reference

#include <WriteHDF5.hpp>

Inheritance diagram for moab::WriteHDF5::ExportType:
moab::WriteHDF5::ExportSet

List of all members.

Public Member Functions

virtual ~ExportType ()
bool operator== (ExportType t) const
bool operator!= (ExportType t) const
bool operator< (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 82 of file WriteHDF5.hpp.


Constructor & Destructor Documentation

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

Definition at line 89 of file WriteHDF5.hpp.

    { }

Member Function Documentation

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

Definition at line 94 of file WriteHDF5.hpp.

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

Definition at line 96 of file WriteHDF5.hpp.

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

Definition at line 92 of file WriteHDF5.hpp.

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

Member Data Documentation

The number of nodes per entity - not used for nodes and sets.

Definition at line 87 of file WriteHDF5.hpp.

The type of the entities in the range.

Definition at line 85 of file WriteHDF5.hpp.


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