PSCF v1.1
|
Factory for subclasses of Iterator. More...
#include <IteratorFactory.h>
Public Member Functions | |
IteratorFactory (System< D > &system) | |
Constructor. More... | |
Iterator< D > * | factory (const std::string &className) const |
Method to create any Iterator supplied with PSCF. More... | |
![]() | |
Factory () | |
Constructor. More... | |
virtual | ~Factory () |
Destructor. More... | |
void | addSubfactory (Factory< Iterator< D > > &subfactory) |
Add a new subfactory to the list. More... | |
virtual Iterator< D > * | factory (const std::string &className) const=0 |
Returns a pointer to a new instance of specified subclass. More... | |
Iterator< D > * | readObject (std::istream &in, ParamComposite &parent, std::string &className, bool &isEnd, bool isRequired=true) |
Read a class name, instantiate an object, and read its parameters. More... | |
Iterator< D > * | readObjectOptional (std::istream &in, ParamComposite &parent, std::string &className, bool &isEnd) |
Read an optional class name, instantiate an object, and read its parameters. More... | |
Iterator< D > * | loadObject (Serializable::IArchive &ar, ParamComposite &parent, std::string &className) |
Load a class name, instantiate an object, and load the object. More... | |
Additional Inherited Members | |
![]() | |
Iterator< D > * | trySubfactories (const std::string &className) const |
Search through subfactories for match. More... | |
void | setIoCommunicator (MPI::Intracomm &communicator) |
Set associated Mpi communicator. More... | |
bool | hasIoCommunicator () const |
Does this factory have a param communicator? More... | |
Factory for subclasses of Iterator.
Definition at line 29 of file pspc/iterator/IteratorFactory.h.
Pscf::Pspc::IteratorFactory< D >::IteratorFactory | ( | System< D > & | system | ) |
Constructor.
Definition at line 19 of file pspc/iterator/IteratorFactory.tpp.
|
virtual |
Method to create any Iterator supplied with PSCF.
className | name of the Iterator subclass |
Implements Util::Factory< Iterator< D > >.
Definition at line 27 of file pspc/iterator/IteratorFactory.tpp.