Public Member Functions | |
elemtype (int vals[2]) | |
elemtype (int t, int n) | |
bool | operator== (const elemtype &other) const |
bool | operator< (const elemtype &other) const |
bool | operator!= (const elemtype &other) const |
Public Attributes | |
int | mbtype |
int | numnode |
Definition at line 1204 of file WriteHDF5Parallel.cpp.
|
inline |
Definition at line 1209 of file WriteHDF5Parallel.cpp.
1209 : mbtype( vals[0] ), numnode( vals[1] ) {}
|
inline |
Definition at line 1210 of file WriteHDF5Parallel.cpp.
1210 : mbtype( t ), numnode( n ) {}
|
inline |
Definition at line 1222 of file WriteHDF5Parallel.cpp.
1223 {
1224 return !this->operator==( other );
1225 }
References operator==().
|
inline |
Definition at line 1216 of file WriteHDF5Parallel.cpp.
1217 {
1218 if( mbtype > other.mbtype ) return false;
1219
1220 return mbtype < other.mbtype || ( mbtype != MBENTITYSET && numnode < other.numnode );
1221 }
References MBENTITYSET, mbtype, and numnode.
|
inline |
Definition at line 1212 of file WriteHDF5Parallel.cpp.
1213 {
1214 return mbtype == other.mbtype && ( mbtype == MBENTITYSET || numnode == other.numnode );
1215 }
References MBENTITYSET, mbtype, and numnode.
Referenced by operator!=().
int moab::elemtype::mbtype |
Definition at line 1206 of file WriteHDF5Parallel.cpp.
Referenced by operator<(), and operator==().
int moab::elemtype::numnode |
Definition at line 1207 of file WriteHDF5Parallel.cpp.
Referenced by operator<(), and operator==().