|
AXOM
Axom provides a robust, flexible software infrastructure for the development of multi-physics applications and computational tools.
|
Header file for ItemCollection. More...
#include <string>#include "axom/config.hpp"#include "axom/core/Types.hpp"#include "axom/core/IteratorBase.hpp"Classes | |
| class | axom::ItemCollection< T > |
| ItemCollection is an abstract base class template for holding a collection of items of template parameter type T. Derived child classes can determine how to specifically store the items. More... | |
| class | axom::ItemCollection< T >::iterator |
| An std-compliant forward iterator for an ItemCollection. More... | |
| class | axom::ItemCollection< T >::const_iterator |
| An std-compliant forward iterator for a const ItemCollection. More... | |
| class | axom::ItemCollection< T >::iterator_adaptor |
| Utility class to wrap an ItemCollection in support of iteration. More... | |
| class | axom::ItemCollection< T >::const_iterator_adaptor |
| Utility class to wrap a const ItemCollection in support of iteration. More... | |
Namespaces | |
| axom | |
Header file for ItemCollection.
This is a templated abstract base class defining an interface for
classes holding a collection of items of a fixed
type that can be accessed by string name or axom::IndexType.
The primary intent is to decouple the implementation of the
collections from the Group class which owns collections of
View and child Group objects. They may have other uses,
so they are not dependent on the Group class. This class is
templated on the item type so that derived classes can be used
to hold either View or Group object pointers without
having to code a separate class for each.
Derived implemenations of this class can be used to explore
alternative collection implementations for performance
(insertion, lookup, etc.) and memory overhead.
\attention These classes should be robust against any potential
user interaction. They don't report errors and leave
checking of return values to calling code.
\attention The interface defined by this class is as follows:
\verbatim