moab
|
#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 495 of file TagCompare.hpp.
typedef int moab::InsertCount::iterator |
Definition at line 502 of file TagCompare.hpp.
moab::InsertCount::InsertCount | ( | size_t | initial_count = 0 | ) | [inline] |
Definition at line 500 of file TagCompare.hpp.
: mCount(initial_count) {}
iterator moab::InsertCount::begin | ( | ) | const [inline] |
Definition at line 503 of file TagCompare.hpp.
{ return 0; }
iterator moab::InsertCount::end | ( | ) | const [inline] |
Definition at line 504 of file TagCompare.hpp.
{ return mCount; }
iterator moab::InsertCount::insert | ( | iterator | , |
EntityHandle | first, | ||
EntityHandle | last | ||
) | [inline] |
Definition at line 505 of file TagCompare.hpp.
iterator moab::InsertCount::insert | ( | iterator | , |
EntityHandle | |||
) | [inline] |
Definition at line 507 of file TagCompare.hpp.
size_t moab::InsertCount::mCount [private] |
Definition at line 497 of file TagCompare.hpp.