#include <factory.h>

Public Member Functions | |
| FactoryImp (const std::string &name) | |
| ~FactoryImp () | |
Static Public Member Functions | |
| static std::unique_ptr< Base > | build (const std::string &name) |
Protected Member Functions | |
| template<> | |
| std::map< std::string, Factory< Partitioner > *> & | factory_map () |
Static Protected Member Functions | |
| static std::map< std::string, Factory< Base > * > & | factory_map () |
Private Member Functions | |
| virtual std::unique_ptr< Base > | create () override |
Factory implementation class.
|
inline |
|
inline |
|
inlinestaticinherited |
Builds an object of type Base identified by name.
Definition at line 129 of file factory.h.
References libMesh::Factory< Base >::create(), libMesh::err, and libMesh::Quality::name().
|
inlineoverrideprivatevirtual |
Implements libMesh::Factory< Base >.
|
protectedinherited |
Definition at line 38 of file partitioner_factory.C.
|
staticprotectedinherited |
Map from a name to a Factory<Base> * pointer.