#include <VesselRegister.h>
Public Member Functions | |
~VesselRegister () | |
The destructor. More... | |
void | add (std::string keyword, creator_pointer, keyword_pointer k, keyword_pointer ik) |
Add a new distribution function option to the register of distribution functions. More... | |
void | remove (creator_pointer f) |
Remove a distribution function from the register of distribution functions. More... | |
bool | check (std::string keyname) |
Verify if a distribution keyword is present in the register. More... | |
Vessel * | create (std::string keyword, const VesselOptions &da) |
Create a distribution function of the specified type. More... | |
Keywords | getKeywords () |
Return the keywords. More... | |
Private Types | |
typedef Vessel *(* | creator_pointer) (const VesselOptions &) |
Pointer to a function which, given the keyword for a distribution function, creates it. More... | |
typedef void(* | keyword_pointer) (Keywords &) |
Pointer to the function that reserves the keyword for the distribution. More... | |
Private Attributes | |
std::map< std::string, creator_pointer > | m |
The set of possible distribution functions we can work with. More... | |
std::map< std::string, keyword_pointer > | mk |
Map action to a function which documents the related object. More... | |
Keywords | keywords |
A vector of function pointers - this is used to create the documentation. More... | |
|
private |
Pointer to a function which, given the keyword for a distribution function, creates it.
|
private |
Pointer to the function that reserves the keyword for the distribution.
PLMD::vesselbase::VesselRegister::~VesselRegister | ( | ) |
The destructor.
void PLMD::vesselbase::VesselRegister::add | ( | std::string | keyword, |
creator_pointer | f, | ||
keyword_pointer | k, | ||
keyword_pointer | ik | ||
) |
Add a new distribution function option to the register of distribution functions.
bool PLMD::vesselbase::VesselRegister::check | ( | std::string | keyname | ) |
Verify if a distribution keyword is present in the register.
Vessel * PLMD::vesselbase::VesselRegister::create | ( | std::string | keyword, |
const VesselOptions & | da | ||
) |
Create a distribution function of the specified type.
Keywords PLMD::vesselbase::VesselRegister::getKeywords | ( | ) |
Return the keywords.
void PLMD::vesselbase::VesselRegister::remove | ( | creator_pointer | f | ) |
Remove a distribution function from the register of distribution functions.
|
private |
A vector of function pointers - this is used to create the documentation.
|
private |
The set of possible distribution functions we can work with.
|
private |
Map action to a function which documents the related object.
Hosted by GitHub | 1.8.10 |