| 1557 | ExecutableScope Configurator::GetExecutableScope() const { return this->executable_scope; } |
| 1558 | |
| 1559 | void Configurator::SetExecutableScope(ExecutableScope scope) { |
| 1560 | assert(scope >= EXECUTABLE_SCOPE_FIRST && scope <= EXECUTABLE_SCOPE_LAST); |
| 1561 | this->executable_scope = scope; |
| 1562 | } |
| 1563 | |
| 1564 | bool Configurator::GetUseSystemTray() const { return this->use_system_tray; } |
| 1565 |