| 496 | } |
| 497 | |
| 498 | bool IsDefault(const char *name) |
| 499 | { |
| 500 | if (!m_Options.count(name)) |
| 501 | throw "try to check non-existent option"; |
| 502 | |
| 503 | if (m_Options[name].defaulted()) |
| 504 | return true; |
| 505 | return false; |
| 506 | } |
| 507 | |
| 508 | bool GetOptionAsAny(const char *name, boost::any& value) |
| 509 | { |
no outgoing calls
no test coverage detected