MOAB: Mesh Oriented datABase
(version 5.4.1)
|
#include <TagCompare.hpp>
Public Types | |
typedef int | iterator |
Public Member Functions | |
InsertCount (size_t initial_count=0) | |
iterator | begin () const |
iterator | end () const |
iterator | insert (iterator, EntityHandle first, EntityHandle last) |
iterator | insert (iterator, EntityHandle) |
Private Attributes | |
size_t | mCount |
Dummy container that counts insertions rather than maintaining a list of entities
Definition at line 537 of file TagCompare.hpp.
typedef int moab::InsertCount::iterator |
Definition at line 545 of file TagCompare.hpp.
moab::InsertCount::InsertCount | ( | size_t | initial_count = 0 | ) | [inline] |
Definition at line 543 of file TagCompare.hpp.
: mCount( initial_count ) {}
iterator moab::InsertCount::begin | ( | ) | const [inline] |
Definition at line 546 of file TagCompare.hpp.
{
return 0;
}
iterator moab::InsertCount::end | ( | ) | const [inline] |
Definition at line 550 of file TagCompare.hpp.
References mCount.
Referenced by insert(), moab::VarLenDenseTag::num_tagged_entities(), moab::VarLenSparseTag::num_tagged_entities(), and moab::SparseTag::num_tagged_entities().
{ return mCount; }
iterator moab::InsertCount::insert | ( | iterator | , |
EntityHandle | first, | ||
EntityHandle | last | ||
) | [inline] |
iterator moab::InsertCount::insert | ( | iterator | , |
EntityHandle | |||
) | [inline] |
size_t moab::InsertCount::mCount [private] |
Definition at line 540 of file TagCompare.hpp.