Skip to content
Snippets Groups Projects
Commit 6e5844fd authored by ilor's avatar ilor
Browse files

allow accesing a specific Writer's help string

parent 3f00499f
Branches
No related merge requests found
......@@ -92,6 +92,17 @@ std::vector<std::string> TokenWriter::available_writer_types()
return TokenWriterFactorySingleton::Instance().factory.RegisteredIds();
}
std::string TokenWriter::writer_help(const std::string& class_id)
{
std::map<std::string, std::string>::const_iterator c;
c = TokenWriterFactorySingleton::Instance().help.find(class_id);
if (c != TokenWriterFactorySingleton::Instance().help.end()) {
return c->second;
} else {
return "";
}
}
std::vector<std::string> TokenWriter::available_writer_types_help()
{
std::vector<std::string> v = available_writer_types();
......
......@@ -90,6 +90,11 @@ public:
*/
static std::vector<std::string> available_writer_types();
/**
* Function to get the help string for a writer
*/
static std::string writer_help(const std::string& class_id);
/**
* Function to get a vector of available writer type strings with help
* strings appended
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment