* @brief Returns true if --runtime (Pro operator mode) was passed. */
| 334 | * @brief Returns true if --runtime (Pro operator mode) was passed. |
| 335 | */ |
| 336 | bool CLI::runtimeMode() const noexcept |
| 337 | { |
| 338 | #ifdef BUILD_COMMERCIAL |
| 339 | return m_parser.isSet(m_opts.runtimeOpt); |
| 340 | #else |
| 341 | return false; |
| 342 | #endif |
| 343 | } |
| 344 | |
| 345 | /** |
| 346 | * @brief Returns true if the toolbar should be hidden at startup. |
no outgoing calls
no test coverage detected