Definition at line 530 of file Options.h.
◆ LogonConfiguration()
Definition at line 559 of file Options.h.
560 : ConfigurationBase(qty, args)
561 {
562 }
◆ clientId()
Definition at line 533 of file Options.h.
534 {
535 return argOrDefault(options(),
"clientId", Default::ClientId);
536 }
Value argOrDefault(const Options &options, const Char *option, const Value &defaultValue=Value())
◆ password()
| std::string password |
( |
| ) |
const |
|
inline |
Definition at line 543 of file Options.h.
544 {
545 return argOrDefault(options(),
"password", Default::Password);
546 }
◆ showOptions()
| void showOptions |
( |
std::ostream & | out | ) |
const |
|
inlineoverrideprotectedvirtual |
Implements ConfigurationBase.
Definition at line 564 of file Options.h.
565 {
566 out
567 << " --clientId [clientId]" << std::endl
568 << " --userId [userId]" << std::endl
569 << " --password [password]" << std::endl
570 << " --traderId [traderId]" << std::endl
571 << " --traderPwd [traderPwd]" << std::endl;
572 }
◆ traderId()
| std::string traderId |
( |
| ) |
const |
|
inline |
Definition at line 548 of file Options.h.
549 {
550 return argOrDefault(options(),
"traderId", Default::TraderId);
551 }
◆ traderPwd()
| std::string traderPwd |
( |
| ) |
const |
|
inline |
Definition at line 553 of file Options.h.
554 {
555 return argOrDefault(options(),
"traderPwd", Default::TraderPassword);
556 }
◆ userId()
| std::string userId |
( |
| ) |
const |
|
inline |