Adding parser implementation for key-value subopt format

A parser implementation for FairMQ channel properties.
The parser handles a comma separated key=value list format by using the
getsubopt function of the standard library.

The option key '--channel-config' can be used with the list of key/value
pairs like e.g.
--channel-config name=output,type=push,method=bind
This commit is contained in:
Matthias Richter
2017-03-30 16:45:33 +02:00
committed by Mohammad Al-Turany
parent 341464a793
commit e184610c06
3 changed files with 142 additions and 0 deletions

View File

@@ -94,6 +94,7 @@ Set(SRCS
"options/FairProgOptions.cxx"
"options/FairMQProgOptions.cxx"
"options/FairMQParser.cxx"
"options/FairMQSuboptParser.cxx"
)
If(NANOMSG_FOUND)