Interface for the entry point manager. More...
#include <arcane/core/IEntryPointMng.h>
Public Member Functions | |
| virtual | ~IEntryPointMng ()=default |
| Frees resources. | |
| virtual void | addEntryPoint (IEntryPoint *)=0 |
| Adds an entry point to the manager. | |
| virtual IEntryPoint * | findEntryPoint (const String &s)=0 |
| Entry point by name s. | |
| virtual IEntryPoint * | findEntryPoint (const String &module_name, const String &s)=0 |
| Entry point by name s from module name module_name. | |
| virtual void | dumpList (std::ostream &o)=0 |
| Displays the list of entry points of the manager in \o. | |
| virtual EntryPointCollection | entryPoints ()=0 |
| List of entry points. | |
Interface for the entry point manager.
Definition at line 32 of file IEntryPointMng.h.
|
pure virtual |
Adds an entry point to the manager.
Implemented in Arcane::EntryPointMng.
|
pure virtual |
Displays the list of entry points of the manager in \o.
Implemented in Arcane::EntryPointMng.
|
pure virtual |
List of entry points.
Implemented in Arcane::EntryPointMng.
|
pure virtual |
Entry point by name s from module name module_name.
Returns nullptr if the entry point is not found
Implemented in Arcane::EntryPointMng.
|
pure virtual |
Entry point by name s.
Returns nullptr if the entry point is not found
Implemented in Arcane::EntryPointMng.